mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
12 lines
369 B
SCSS
12 lines
369 B
SCSS
|
// Horizontal dividers
|
||
|
//
|
||
|
// Dividers (basically an hr) within dropdowns and nav lists
|
||
|
|
||
|
@mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y, $ignore-warning: false) {
|
||
|
height: 0;
|
||
|
margin: $margin-y 0;
|
||
|
overflow: hidden;
|
||
|
border-top: 1px solid $color;
|
||
|
@include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
|
||
|
}
|