summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/automatic/scss/media-multiple.scss
blob: 2550d018b375feb4e36cbf9033abe49e7fb62a88 (plain)
1
2
3
4
5
6
7
8
9
10
@media print, screen {
	a {
		b: c;
	}
}
@media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) {
  body {
    background: #ccc;
  }
}