diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/css/media-multiple.css')
-rw-r--r-- | theme-compiler/tests/resources/automatic/css/media-multiple.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/media-multiple.css b/theme-compiler/tests/resources/automatic/css/media-multiple.css new file mode 100644 index 0000000000..2550d018b3 --- /dev/null +++ b/theme-compiler/tests/resources/automatic/css/media-multiple.css @@ -0,0 +1,10 @@ +@media print, screen { + a { + b: c; + } +} +@media all and (max-width: 699px) and (min-width: 520px), (min-width: 1151px) { + body { + background: #ccc; + } +}
\ No newline at end of file |