Commit d824bdf4 authored by ysds's avatar ysds
Browse files

Allow to customize vertical margin of `nav-divider` mixin

parent 2b42ef0d
Showing with 2 additions and 2 deletions
+2 -2
......@@ -2,9 +2,9 @@
//
// Dividers (basically an hr) within dropdowns and nav lists
@mixin nav-divider($color: #e5e5e5) {
@mixin nav-divider($color: #e5e5e5, $margin-y: ($spacer / 2)) {
height: 0;
margin: ($spacer / 2) 0;
margin: $margin-y 0;
overflow: hidden;
border-top: 1px solid $color;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment