Posts by Artur Kim • 156 points
1 post
-
4
votes1
answer79
viewsA: Is it possible to do Functions with SASS?
This is possible using @mixin with @content. For example: @mixin mobile { @media (max-width: 992px) { background: black; @content; } } .exemplo { @include mobile { color: white; } } Will compile:…