File: _nav-divider.scss

package info (click to toggle)
twitter-bootstrap4 4.5.2%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,624 kB
  • sloc: javascript: 11,920; sh: 36; makefile: 21; xml: 11
file content (11 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
// Horizontal dividers
//
// Dividers (basically an hr) within dropdowns and nav lists

@mixin 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;
  @include deprecate("The `nav-divider()` mixin", "v4.4.0", "v5", $ignore-warning);
}