Sha256: aee240c8dabc01131e1b8d8b09bdbd2744c4010ac663bdadbbd7020ae26eaf22

Contents?: true

Size: 716 Bytes

Versions: 542

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

542 entries across 542 versions & 1 rubygems

Version Path
playbook_ui-13.25.0.pre.alpha.PBNTR272Dropdownkitv42769 app/pb_kits/playbook/pb_section_separator/_section_separator_mixin.scss
playbook_ui-13.25.0.pre.alpha.barchartfix2766 app/pb_kits/playbook/pb_section_separator/_section_separator_mixin.scss