S
S
sergey199408082018-07-13 09:53:19
css
sergey19940808, 2018-07-13 09:53:19

SASS why media queries don't work?

There are simple styles, in chrome I resize, but the styles for the media query are not connected

body {
  background-color: $main-color;
  @media only screen and (max-width: 500px) {
    body {
        background-color: blue;

    }
  }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrey B., 2018-07-13
@sergey19940808

body {
  background-color: $main-color;
  @media only screen and (max-width: 500px) {
        background-color: blue;
  }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question