Testimonials Grid Section with HTML & Sass

Solution retrospective
I applied CSS Grid to this project, opting for grid-area over grid-row/grid-column for improved simplicity and semantic clarity.
What challenges did you encounter, and how did you overcome them?On challenge for me is how to add a decorative pattern image behind the text. I learned it from : MDN document
What specific areas of your project would you like help with?I'm open to all kinds of feedback and suggestions for improving my code. Feel free to share any recommendations! 😊
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@jellmoo
Your SCSS code is well-structured and organized, making good use of variables, mixins, and responsive design principles, although it's a good practice to separate variables into a separate _variables.scss file and import it into the main SCSS file. This improves maintainability and reusability, especially if it ends up being a larger project. Also, HSL does not support alpha transparency directly. You should use HSLA instead:
$shadow: hsla(249, 17%, 24%, 0.15);
Marked as helpful
Join 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