diff options
Diffstat (limited to 'theme-compiler/tests/resources/automatic/scss/media.scss')
-rw-r--r-- | theme-compiler/tests/resources/automatic/scss/media.scss | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/theme-compiler/tests/resources/automatic/scss/media.scss b/theme-compiler/tests/resources/automatic/scss/media.scss deleted file mode 100644 index 311c5088c8..0000000000 --- a/theme-compiler/tests/resources/automatic/scss/media.scss +++ /dev/null @@ -1,26 +0,0 @@ -@mixin media-settings { - @media screen { - .v-view { - overflow: visible; - } - @content; - } -} - -@include media-settings { - .details { - font: { - size : 1pt; - weight: bold; - } - } - - width:100%; -} - - -@media screen and (max-width: 480px) { - .abc { - background: red; - } -} |