mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05: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`).
10 lines
220 B
SCSS
10 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;
|
|
}
|