Alexander Guillén Hernández
@AlexanderTheWiseAll comments
- @Rhinozer0s@AlexanderTheWise
Good copy.
When you're nesting classes like this: .card{ .... .card__qr-code{...} }
it will transpile to this: .card{...} .card .card__qr-code {...} => higher specificity (20)
Use "&" for BEM elements when using SASS. .card{ &__qr-code{...} => concatenation = (".card" + "__qr-code") }
It will transpile to this: .card {...} .card__qr-code{...} => lower specificity (10)
Marked as helpful - @IoQuality@AlexanderTheWise
I have to say that I like your design better than the one provided by the website.