Submitted about 3 years ago
Order Summary Component - CSS3 & SASS + BEM & SMACSS
@ASNovaes
Design comparison
SolutionDesign
Solution retrospective
Feedback is welcome!
Community feedback
- @kens-visualsPosted about 3 years ago
Hey @ASNovaes 👋🏻
I have some feedback to help you fix the accessibility issues and some other things.
- In your markup,
<div class="card">...</div>
should be<main class="card">...</main>
. This will fix the accessibility issues, don't forget to generate a new repot once you fix the issues. - For the music icon, add
aria-hidden="true”
, because it's for decoration. You can read more aboutaria-hidden
here. - Hero image should have a
display: block;
, it removes the line underneath the image. If you want to know what's causing it, check out the 3rd section of this video - Also, I suggest adding
transition: all 0.2s;
to the button and the links, this will make:hover
smoother.
I hope this was helpful 👨🏻💻 all in all, you did a great job, nicely done. Cheers 👾
Marked as helpful1 - In your markup,
- @ASNovaesPosted about 3 years ago
@kens_visuals 👋🏻
Thank you very much for the feedback, it was very helpful. Cheers 👾
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord