I want to write this mixin:
@mixin top_a($sep-a: 2.5) {
padding-top: $sep-a + %;}
But unfortunately this throws in an error. How do I add the percentage to the value correctly?
I want to write this mixin:
@mixin top_a($sep-a: 2.5) {
padding-top: $sep-a + %;}
But unfortunately this throws in an error. How do I add the percentage to the value correctly?