-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
add task solution #3514
base: master
Are you sure you want to change the base?
add task solution #3514
Conversation
StasyaKukhniuk
commented
Aug 23, 2023
- 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.
Almost perfect! Well done!
Just minor fixes needed
src/index.html
Outdated
<title>Stars</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
</head> | ||
<!-- #endregion --> |
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 comments
<!-- #endregion --> |
src/index.html
Outdated
</div> | ||
<div class="stars stars--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.
add an empty line between multiline siblings for better readability
</div> | |
<div class="stars stars--1"> | |
</div> | |
<div class="stars stars--1"> |
src/style.css
Outdated
background-image: url(images/star.svg); | ||
background-repeat: no-repeat; | ||
background-position: center; |
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.
you can apply background shorthand
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.
Well done