Sha256: 7452a7b2ebfb7f6d31a742746e62ffcea9cf8a4f3a57b9047002a5ff255220fb
Contents?: true
Size: 1.9 KB
Versions: 15
Compression:
Stored size: 1.9 KB
Contents
/* range appropriated xl: 1200px, md: 768px, xs: 1, ________________________________*/ /* show-xl from 1200 ________________________________*/ .show-xl { display: none !important; @include media-breakpoint-up(xl){ display:block !important; } } /* show-lg ________________________________*/ .show-lg { display: none !important; } @include media-breakpoint-down(lg){ .show-lg { display:block !important; } .show-xl { display:none !important; } } /* show-md ________________________________*/ .show-md { display: none !important; } @include media-breakpoint-down(md){ .show-md { display: block !important; } .show-lg { display: none !important; } .show-xl { display:none !important; } } /* show-sm ________________________________*/ .show-sm { display: none !important; } @include media-breakpoint-down(sm){ .show-sm { display: block !important; } .show-md { display: none !important; } .show-lg { display: none !important; } .show-xl { display:none !important; } } /* show-xs 1 => 575 ________________________________*/ .show-xs { display: none !important; } @include media-breakpoint-down(xs){ .show-xs { display: block !important; } .show-sm-small { display: none !important; } .show-sm { display: none !important; } .show-md { display: none !important; } .show-lg { display: none !important; } .show-xl { display:none !important; } } @media (max-width: 320px){ padding-top:687px !important; } .show-xxs { display: none !important; } @media (max-width: 320px){ .show-xxs { display: block !important; } .show-xs { display: none !important; } .show-sm-small { display: none !important; } .show-sm { display: none !important; } .show-md { display: none !important; } .show-lg { display: none !important; } .show-xl { display:none !important; } }
Version data entries
15 entries across 15 versions & 1 rubygems