Sha256: 2b8c0656489dccdc73520503e33ced22468634777b485742ab9338cab2c8bec2
Contents?: true
Size: 1.29 KB
Versions: 62
Compression:
Stored size: 1.29 KB
Contents
/*------------------------------------*\ #VISIBLE \*------------------------------------*/ /** * Reveal a block-level element. */ .visible, %visible { display: block !important; } /** * Reveal a block-level element for greater-than or equal-to the breakpoint. */ .visible--for-medium, %visible--for-medium { display: none !important; @include respond-to($medium-breakpoint) { display: block !important; } } .visible--for-wide, %visible--for-wide { display: none !important; @include respond-to($wide-breakpoint) { display: block !important; } } /** * Reveal a block-level element for the breakpoint. */ .visible--for-small-only, %visible--for-small-only { @include respond-to($medium-breakpoint) { display: none !important; } } .visible--for-medium-only, %visible--for-medium-only { display: none !important; @include respond-to($medium-breakpoint) { display: block !important; } @include respond-to($wide-breakpoint) { display: none !important; } } .visible--for-wide-only, %visible--for-wide-only { display: none !important; @include respond-to($wide-breakpoint) { display: block !important; } @include respond-to($x-wide-breakpoint) { display: none !important; } }
Version data entries
62 entries across 62 versions & 1 rubygems