Sha256: 91a0fd2fa72ca82bdc5eb5d188040b89fb57938979dd40d4be625cf23742e734
Contents?: true
Size: 922 Bytes
Versions: 11
Compression:
Stored size: 922 Bytes
Contents
//- Visibility .is-hidden { display: none; visibility: hidden; } .is-hidden-mobile { @include media($mobile) { display: none; visibility: hidden; } } .is-hidden-tablet { @include media($tablet) { display: none; visibility: hidden; } } .is-hidden-desktop { @include media(min-width $tablet) { display: none; visibility: hidden; } } .is-visible { display: block; visibility: visible; } .is-hidden-visually { position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; border: 0; clip: rect(1px, 1px, 1px, 1px); } .is-invisible { visibility: hidden; } //- UI Elements .is-actionable { cursor: pointer; } .is-draggable { cursor: move; } .is-disabled { cursor: default; } .is-fixed { position: fixed; top: 0; left: 0; } .left { float: left; } .right { float: right; } .disabled { opacity: 0.65; cursor: not-allowed; }
Version data entries
11 entries across 11 versions & 1 rubygems