-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ready to push #5332
base: master
Are you sure you want to change the base?
ready to push #5332
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src/index.html
Outdated
</head> | ||
<body> | ||
<h1>Moyo header</h1> | ||
<!--Header start--> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<!--Header start--> |
src/index.html
Outdated
<div class="wrapper"> | ||
<div class="header__wrapper"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant
<div class="wrapper"> | |
<div class="header__wrapper"> |
src/index.html
Outdated
</head> | ||
<body> | ||
<h1>Moyo header</h1> | ||
<!--Header start--> | ||
<header class="header__menu"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<header class="header__menu"> | |
<header class="header"> |
src/index.html
Outdated
<a href="#!" class="header__logo-link"> | ||
<img src="./images/logo.png" alt="MOYO logo" class="header__logo-pic"> | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix code style everywhere
<a href="#!" class="header__logo-link"> | |
<img src="./images/logo.png" alt="MOYO logo" class="header__logo-pic"> | |
</a> | |
<a href="#" class="header__link"> | |
<img | |
src="./images/logo.png" | |
alt="MOYO logo" | |
class="header__img" | |
> | |
</a> |
src/index.html
Outdated
<li class="header__item"> | ||
<a href="#Apple" class="header__link js-scroll is-active">Apple</a> | ||
</li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<li class="header__item"> | |
<a href="#Apple" class="header__link js-scroll is-active">Apple</a> | |
</li> | |
<li class="header__item"> | |
<a href="#Apple" class="nav__link is-active">Apple</a> | |
</li> |
src/index.html
Outdated
|
||
<nav class="header__nav"> | ||
<ul class="header__list"> | ||
<li class="header__item"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix classes everywhere
<nav class="header__nav"> | |
<ul class="header__list"> | |
<li class="header__item"> | |
<nav class="nav"> | |
<ul class="nav__list"> | |
<li class="nav__item"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please, provide the links from the readme.md file, or feel free to ask for some help in the chat
But I already provided this links, we talk about Demolinks and Test report
link?
чт, 24 окт. 2024 г. в 22:09, Denys Semtso ***@***.***>:
… ***@***.**** requested changes on this pull request.
please, provide the links from the readme.md file, or feel free to ask for
some help in the chat
—
Reply to this email directly, view it on GitHub
<#5332 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ARIHFALVP5NM4NDTTCPAKTTZ5FHWDAVCNFSM6AAAAABNQ5OBJKVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDGOJTGYYTIMRVG4>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
readme.md
Outdated
- [DEMO LINK](https://https://github.com/MindControl01.github.io/layout_moyo-header/) | ||
- [TEST REPORT LINK](https://https://github.com/MindControl01.github.io/layout_moyo-header/report/html_report/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- [DEMO LINK](https://https://github.com/MindControl01.github.io/layout_moyo-header/) | |
- [TEST REPORT LINK](https://https://github.com/MindControl01.github.io/layout_moyo-header/report/html_report/) | |
- [DEMO LINK](https://MindControl01.github.io/layout_moyo-header/) | |
- [TEST REPORT LINK](https://MindControl01.github.io/layout_moyo-header/report/html_report/) |
src/index.html
Outdated
</head> | ||
<body> | ||
<h1>Moyo header</h1> | ||
<header class="header"> | ||
<div class="wrapper"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant wrapper
<div class="wrapper"> |
src/index.html
Outdated
<li class="nav__item"> | ||
<a | ||
href="#Samsung" | ||
class="nav__link is-active" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class should be only for first link, remove it everywhere
class="nav__link is-active" | |
class="nav__link" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought this function on the first element in figma show us how should work all buttons after hovering over them
src/style.css
Outdated
|
||
/* Header start */ | ||
|
||
active-color { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to create variable with :root
selector
active-color { | |
:root { |
src/style.css
Outdated
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
position: fixed; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Redundant
position: fixed; |
src/style.css
Outdated
} | ||
|
||
.nav { | ||
width: 1200px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
width: 1200px; |
src/style.css
Outdated
align-items: flex-end; | ||
color: black; | ||
list-style-type: none; | ||
padding-left: 420px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
padding-left: 420px; |
src/style.css
Outdated
} | ||
|
||
[data-qa='hover'] { | ||
color: #00acdc; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a variable for repeated color
Я не могу понять почему Test Report link не работает, уже всё перепробовал. Деплой сделал/ Another comments was successfuly debugged |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.