Files
dev-chiefworks f76abffdcd first commit
2022-05-31 16:21:53 -04:00

11 lines
261 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) {
height: 0;
margin: $margin-y 0;
overflow: hidden;
border-top: 1px solid $color;
}