-
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
'commit' #580
base: master
Are you sure you want to change the base?
'commit' #580
Conversation
ViPiven
commented
Mar 25, 2021
- DEMO LINK
- TEST REPORT 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.
Good! But let's make it little better
src/index.html
Outdated
<meta name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
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.
<meta name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta | |
name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" | |
> |
src/index.html
Outdated
<img src="images/logo.png" | ||
alt="Moyo-logo" | ||
> |
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.
<img src="images/logo.png" | |
alt="Moyo-logo" | |
> | |
<img src="images/logo.png" alt="Moyo-logo"> |
src/index.html
Outdated
<a href="#" | ||
class="nav__item" | ||
data-qa="hover" | ||
> |
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__item" | |
data-qa="hover" | |
> | |
<a | |
href="#" | |
class="nav__item" | |
data-qa="hover" | |
> |
src/style.css
Outdated
.nav__link:last-child, | ||
.nav__link:last-child .nav__item { | ||
margin-right: 0; | ||
} |
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.
.nav__link:last-child, | |
.nav__link:last-child .nav__item { | |
margin-right: 0; | |
} | |
.nav__link:last-child { | |
margin-right: 0; | |
} |
src/style.css
Outdated
.nav__item.is-active { | ||
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.
.nav__item.is-active { | |
color: #00acdc; | |
} | |
.nav__item.is-active, | |
.nav__item:hover { | |
color: #00acdc; | |
} |
Don't repeat yourself
src/style.css
Outdated
} | ||
|
||
.nav__item.is-active:after { | ||
opacity: 1; |
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.
why do you need this?
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.
Good! But let's make it little better
I fixed all mistakes, check pls
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.
Great job! 👍