mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
ed89be1f44
We have it set to `1` right now just to avoid compilation errors, but it’s been replaced everywhere with our new spacer classes anywho. We’ll likely want to remap that var to custom component vars though (e.g., `$pagination-margin` instead of `$spacer-y`).
11 lines
220 B
SCSS
11 lines
220 B
SCSS
// Horizontal dividers
|
|
//
|
|
// Dividers (basically an hr) within dropdowns and nav lists
|
|
|
|
@mixin nav-divider($color: #e5e5e5) {
|
|
height: 1px;
|
|
margin: ($spacer-y / 2) 0;
|
|
overflow: hidden;
|
|
background-color: $color;
|
|
}
|