summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/sourcemap-sass/media-rules.scss
blob: 4f1c8f216fc6f3d65e0c2c45b64ace3de49d1194 (plain)
1
2
3
4
5
6
7
8
9
10
11
$break-small: 320px;
$break-large: 1200px;

div {
  @media screen and (max-width: $break-small) {
    width: 100px;
  }
  @media screen and (min-width: $break-large) {
    width: 400px;
  }
}