Answer the question
In order to leave comments, you need to log in
How to make a similar entry in SASS?
There is a record. Here the media queries are written in LESS. Tried to write
@media $tablet-widths
width: 960px
Answer the question
In order to leave comments, you need to log in
for scss:
$tablet-widths: "(max-width: 320px)";
@media #{$tablet-widths} {
width: 960px
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question