暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_nav-divider.scss 261B

12345678910
  1. // Horizontal dividers
  2. //
  3. // Dividers (basically an hr) within dropdowns and nav lists
  4. @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {
  5. height: 0;
  6. margin: $margin-y 0;
  7. overflow: hidden;
  8. border-top: 1px solid $color;
  9. }