Sha256: 4a47a5208f3cac92946c3b379d58a133adedc45dce6d9e01dfa2f3d93f370079
Contents?: true
Size: 844 Bytes
Versions: 6
Compression:
Stored size: 844 Bytes
Contents
@mixin mobile { @media #{$mobile-query} { @content; } } @mixin not-mobile { @media #{$not-mobile-query} { @content; } } // meant for portrait mode @mixin tablet { @media #{$tablet-query} { @content; } } @mixin not-tablet { @media #{$not-tablet-query} { @content; } } @mixin desktop { @media #{$desktop-query} { @content; } } @mixin not-desktop { @media #{$not-desktop-query} { @content; } } @if $moovui-init { @include mobile { .mobile-omit { display: none; } } @include not-mobile { .mobile-only { display: none; } } @include tablet { .tablet-omit { display: none; } } @include not-tablet { .tablet-only { display: none; } } @include desktop { .desktop-omit { display: none; } } @include not-desktop { .desktop-only { display: none; } } }
Version data entries
6 entries across 6 versions & 1 rubygems