Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_nav-divider.scss « mixins « bootstrap « vendor « sass « assets - github.com/marcanuy/simpleit-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e0cceafef73f63da68b14be2cd777f4f062e980 (plain)
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);
}