web-apps/vendor/bootstrap/less/mixins/_nav-divider.less
2020-05-21 19:29:40 +03:00

12 lines
351 B
Plaintext

// Horizontal dividers
//
// Dividers (basically an hr) within dropdowns and nav lists
#nav-divider(@color: @nav-divider-color, @margin-y: @nav-divider-margin-y, @ignore-warning: false) {
height: 0;
margin: @margin-y 0;
overflow: hidden;
border-top: 1px solid @color;
#deprecate("The `#nav-divider()` mixin", "v4.4.0", "v5", @ignore-warning);
}