Sha256: 04fa0c5de8bd1c2fa8601ad13b3597f0e8e89d472c96b1c83a1da7669ad5fc56
Contents?: true
Size: 658 Bytes
Versions: 181
Compression:
Stored size: 658 Bytes
Contents
@import "../tokens/colors"; @import "../tokens/spacing"; @mixin section_separator_vertical($dark: false) { @if $dark == false { background: $border_light; } @else { background: $border_dark; } content: ""; height: 100%; width: 1px; margin-left: $space_xs; margin-right: $space_xs; position: initial; z-index: 0; } @mixin section_separator_horizontal($dark: false) { @if $dark == false { background: $border_light; } @else { background: $border_dark; } content: ""; height: 1px; width: 100%; position: absolute; top: 50%; left: 0; z-index: 0; }
Version data entries
181 entries across 181 versions & 1 rubygems