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

My cards #5025

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

My cards #5025

wants to merge 1 commit into from

Conversation

TaniaP26
Copy link

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 submission! 🎉 Your code meets most of the task requirements and constraints, and you've done well with the HTML structure and SCSS organization. There are just a couple of minor improvements to consider: adjusting the opacity value to be between 0 and 1, and using a comma as the thousands separator in the price format for consistency. Keep up the good work and continue refining your skills! 😊

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


<div class="card__price">
<div class="card__price--how">Price</div>
<div class="card__price--what">$2.199</div>

Choose a reason for hiding this comment

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

The price format uses a period as a thousands separator, which is unconventional in English-speaking countries where a comma is typically used. Consider changing '$2.199' to '$2,199' for consistency with common formatting standards.

height: 40px;
margin: auto;
border-radius: 5px;
opacity: 0px;

Choose a reason for hiding this comment

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

The 'opacity' property is set to '0px', which is not a valid value. Opacity should be a number between 0 and 1, without units. Consider changing 'opacity: 0px;' to 'opacity: 0;'.

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