Answer the question
In order to leave comments, you need to log in
How to write media queries in Sass?
Please tell me how to write media queries in a Sass file
, for example, this one:
@media screen (max-width: 1200px) {
.block {
width: 200px;
}
}
Answer the question
In order to leave comments, you need to log in
@media screen and (max-width: 1200px)
.block
width: 200px
and
after screen
. Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question