QR Code Component Using Custom CSS Variables and CSS Grid Properties

Please log in to post a comment
Log in with GitHubCommunity feedback
- @LeikoRed
I see you are using:
not(ul, ol, li) {margin: 0; padding: 0;}
since it targets all elements except ul, ol, and li, setting their margin and padding to zero. It'd be prefered to use the universal selector. The :not selector is used for more specific cases where you need to exclude particular elements, but in this scenario isn't necessary because you don't use
ul
,ol
orli
.*{ margin: 0; padding: 0; }
It is good tho
- @ElianPujols
Espero que tengas esto en cuenta. La solucion esta correcta, pero un punto en el codigo es la cantidad de comentarios repetidos que tiene, en realidad no interfiere directo con el codigo pero es algo que a mi opinión se debe de utilizar en la menor medida posible...
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