Sha256: 81142a247433ef3282e64dbd83fcaec6883def949ef1d63fbbb2cf541391742b
Contents?: true
Size: 1.16 KB
Versions: 17
Compression:
Stored size: 1.16 KB
Contents
/********************* Media Query Classes **********************/ .hide-on-small-only, .hide-on-small-and-down { @media #{$small-and-down} { display: none !important; } } .hide-on-med-and-down { @media #{$medium-and-down} { display: none !important; } } .hide-on-med-and-up { @media #{$medium-and-up} { display: none !important; } } .hide-on-med-only { @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) { display: none !important; } } .hide-on-large-only { @media #{$large-and-up} { display: none !important; } } .show-on-large { @media #{$large-and-up} { display: block !important; } } .show-on-medium { @media only screen and (min-width: $small-screen) and (max-width: $medium-screen) { display: block !important; } } .show-on-small { @media #{$small-and-down} { display: block !important; } } .show-on-medium-and-up { @media #{$medium-and-up} { display: block !important; } } .show-on-medium-and-down { @media #{$medium-and-down} { display: block !important; } } // Center text on mobile .center-on-small-only { @media #{$small-and-down} { text-align: center; } }
Version data entries
17 entries across 17 versions & 1 rubygems