-
Notifications
You must be signed in to change notification settings - Fork 107
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
moyo_header_develop #103
base: master
Are you sure you want to change the base?
moyo_header_develop #103
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.
add the demo and test links to the PR description. and push the readme file
src/index.html
Outdated
</a> | ||
<nav class="nav"> |
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.
Add empty lines between multiline sibling blocks of HTML
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 it everywhere
src/index.html
Outdated
<a | ||
href="#" | ||
class="nav__link" | ||
data-qa="hover"> | ||
Laptops & Computers | ||
</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.
<a | |
href="#" | |
class="nav__link" | |
data-qa="hover"> | |
Laptops & Computers | |
</a> | |
<a | |
href="#" | |
class="nav__link" | |
data-qa="hover" | |
> | |
Laptops & Computers | |
</a> |
src/index.html
Outdated
<a href="#" | ||
class="nav__link">Gadgets</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.
<a href="#" | |
class="nav__link">Gadgets</a> | |
<a | |
href="#" | |
class="nav__link" | |
> | |
Gadgets | |
</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 it everywhere
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.
Hi! Ok, already fixed everywhere.
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
<body> | ||
|
||
<h1>Moyo header</h1> |
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 space between parent and child nodes
<body> | |
<h1>Moyo header</h1> | |
<body> | |
<h1>Moyo header</h1> |
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.
check it throughout your code
src/index.html
Outdated
|
||
<header class="header" id="home"> | ||
|
||
<a href="#home" class="logo__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.
looks like logo is an element of the header
<a href="#home" class="logo__link"> | |
<a href="#home" class="header__logo"> |
src/style.css
Outdated
@@ -1 +1,64 @@ | |||
/* Styles go here */ |
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.
remove all comments
src/style.css
Outdated
body { | ||
margin: 0; | ||
font-family: "Roboto", Arial, sans-serif; | ||
--main-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.
I suggest to define variables in :root
pseudo selector
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.
Hi. Ok, thanks I fixed everything)
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.
<a href="#" | ||
class="menu-link"> | ||
Gadgets | ||
</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.
<a href="#" | |
class="menu-link"> | |
Gadgets | |
</a> | |
<a href="#" class="menu-link"> | |
Gadgets | |
</a> |
if you have only two attributes you can write it in one line
<a href="#" | ||
class="menu-link " | ||
data-qa="hover"> | ||
Laptops & Computers | ||
</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.
<a href="#" | |
class="menu-link " | |
data-qa="hover"> | |
Laptops & Computers | |
</a> | |
<a | |
href="#" | |
class="menu-link" | |
data-qa="hover" | |
> | |
Laptops & Computers | |
</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.
/
DEMO LINK
TEST REPORT LINK