Sha256: aee240c8dabc01131e1b8d8b09bdbd2744c4010ac663bdadbbd7020ae26eaf22
Contents?: true
Size: 716 Bytes
Versions: 539
Compression:
Stored size: 716 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: 1.9px; position: initial; z-index: 0; } @mixin section_separator_horizontal($dark: false) { @if $dark == false { background: $border_light; } @else { background: $border_dark; } } @mixin section_separator_dashed($dark: false) { @if $dark == false { border: 1px dashed $border_light; background: none; } @else { border: 1px dashed $border_dark; background: none; } }
Version data entries
539 entries across 539 versions & 1 rubygems