Skip to content
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 stars #4897

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

add stars #4897

wants to merge 2 commits into from

Conversation

yuurex
Copy link

@yuurex yuurex commented Oct 4, 2024

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on your Pull Request! 🌟 All the feedback provided is about minor improvements and code styling, which do not critically impact the functionality or security of your code. Remember to consider using fallback font-families, be consistent with your margins, and maintain a clean code structure with proper indentation and spacing for better readability. Keep up the good work! 👍

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

@@ -12,7 +12,54 @@
href="./style.css"
/>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The attributes of the tag should each start on a new line with a consistent 2-space indentation from the tag.

<body>
<h1>Stars</h1>
<div class="stars stars--0">

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 sibling div elements to add some 'air' and simplify reading the code.

<div class="stars__star"></div>
</div>

<div class="stars stars--1">

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 sibling div elements to add some 'air' and simplify reading the code.

<div class="stars__star"></div>
</div>

<div class="stars stars--2">

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 sibling div elements to add some 'air' and simplify reading the code.

<div class="stars__star"></div>
</div>

<div class="stars stars--3">

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 sibling div elements to add some 'air' and simplify reading the code.

<div class="stars__star"></div>
</div>

<div class="stars stars--4">

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 sibling div elements to add some 'air' and simplify reading the code.

Comment on lines +2 to +4
body {
margin: 0;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's recommended to avoid styling tags directly (except for html and body). However, since this is the body tag and it's being used to reset default margin, this is acceptable.

background-image: url(images/star.svg);
width: 16px;
height: 16px;
margin-right: 4px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Be consistent with your margins. It's better to add margin to only one side (top or bottom) to avoid potential margin collapse issues.

margin-right: 4px;
background-repeat: no-repeat;
background-position: center;
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider using a fallback font-family to ensure text is displayed with a reasonable font even if the main font isn't available.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants