Sha256: 4ce35032b0da508f31d7aa1bb2cfe130879bdc32f08ba152d1abe9f8cdd63115
Contents?: true
Size: 1000 Bytes
Versions: 29
Compression:
Stored size: 1000 Bytes
Contents
// ============================================================================= // Drawer // ============================================================================= // Wrapper class for the asset drawer. .drawer { position: absolute; top: 0; right: -100%; bottom: 0; left: 100%; z-index: 105; width: 100%; background: $white; transition: all $base-transition-speed ease-in-out; .header-row { padding: 15px 0; } h1 { margin: 0; font-family: $font-family-sans-serif; font-size: 22px; color: $gray-darkest; } > .close-button { position: absolute; top: 0; right: 0; z-index: 991; width: 30px; height: 30px; font-size: 15px; line-height: 30px; color: $white; text-align: center; cursor: pointer; background: $gray-darker; } .inner { height: 100%; > .row:first-child { padding: 20px 0 10px; } } } // Class that opens the asset drawer. .drawer-open { right: 0; left: 0; }
Version data entries
29 entries across 29 versions & 1 rubygems