Renukta-21
@Renukta-21All comments
- @IamShafi@Renukta-21
I'm a beginner bro, I saw your code and I can only suggest for better readibility and maintenance that you could put the mediaqueries styles in the same block, not distributed all along your css, like: -------------------------------------------------------------------------------------------------------------@media (max-width: 600px){ .container{ overflow: hidden; } } @media (max-width: 600px){ body{ padding: 3rem 1.6rem; } }--------------------------------------------------------------------------------------------------------all those styles can be in the same block, congrats bro :)
- @Cyrilange@Renukta-21
Saw your code, and I think you could simplify much more your styles, also you can check the repeated styles that are in the same file, noticed you have tha same media-query distributed all along your file for different elements, I'm a beginner to btw, congrats!
Marked as helpful