rocket-pinboard/static/scss/bootstrap/mixins/_nav-divider.scss
Paul van Tilburg 6259b9b320 Move Bootstrap SCSS to static/
As a result the CSS maps an be used to trace the original line in the SCSS
in the browser inspector.  Also, move bootstrap to a subdir to distinguish
it from the SCSS of the app itself.
2017-12-30 16:23:25 +01:00

11 lines
220 B
SCSS

// Horizontal dividers
//
// Dividers (basically an hr) within dropdowns and nav lists
@mixin nav-divider($color: #e5e5e5) {
height: 0;
margin: ($spacer / 2) 0;
overflow: hidden;
border-top: 1px solid $color;
}