123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- @import "../utilities/mixins"
- $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
- @each $display in $displays
- .is-#{$display}
- display: #{$display} !important
- +mobile
- .is-#{$display}-mobile
- display: #{$display} !important
- +tablet
- .is-#{$display}-tablet
- display: #{$display} !important
- +tablet-only
- .is-#{$display}-tablet-only
- display: #{$display} !important
- +touch
- .is-#{$display}-touch
- display: #{$display} !important
- +desktop
- .is-#{$display}-desktop
- display: #{$display} !important
- +desktop-only
- .is-#{$display}-desktop-only
- display: #{$display} !important
- +widescreen
- .is-#{$display}-widescreen
- display: #{$display} !important
- +widescreen-only
- .is-#{$display}-widescreen-only
- display: #{$display} !important
- +fullhd
- .is-#{$display}-fullhd
- display: #{$display} !important
- .is-hidden
- display: none !important
- .is-sr-only
- border: none !important
- clip: rect(0, 0, 0, 0) !important
- height: 0.01em !important
- overflow: hidden !important
- padding: 0 !important
- position: absolute !important
- white-space: nowrap !important
- width: 0.01em !important
- +mobile
- .is-hidden-mobile
- display: none !important
- +tablet
- .is-hidden-tablet
- display: none !important
- +tablet-only
- .is-hidden-tablet-only
- display: none !important
- +touch
- .is-hidden-touch
- display: none !important
- +desktop
- .is-hidden-desktop
- display: none !important
- +desktop-only
- .is-hidden-desktop-only
- display: none !important
- +widescreen
- .is-hidden-widescreen
- display: none !important
- +widescreen-only
- .is-hidden-widescreen-only
- display: none !important
- +fullhd
- .is-hidden-fullhd
- display: none !important
- .is-invisible
- visibility: hidden !important
- +mobile
- .is-invisible-mobile
- visibility: hidden !important
- +tablet
- .is-invisible-tablet
- visibility: hidden !important
- +tablet-only
- .is-invisible-tablet-only
- visibility: hidden !important
- +touch
- .is-invisible-touch
- visibility: hidden !important
- +desktop
- .is-invisible-desktop
- visibility: hidden !important
- +desktop-only
- .is-invisible-desktop-only
- visibility: hidden !important
- +widescreen
- .is-invisible-widescreen
- visibility: hidden !important
- +widescreen-only
- .is-invisible-widescreen-only
- visibility: hidden !important
- +fullhd
- .is-invisible-fullhd
- visibility: hidden !important
|