mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-05-05 11:04:43 +00:00
10 lines
242 B
SCSS
10 lines
242 B
SCSS
// Horizontal dividers
|
|
//
|
|
// Dividers (basically an hr) within dropdowns and nav lists
|
|
|
|
@mixin nav-divider($color: #e5e5e5, $margin-y: ($spacer / 2)) {
|
|
height: 0;
|
|
margin: $margin-y 0;
|
|
overflow: hidden;
|
|
border-top: 1px solid $color;
|
|
}
|