blob: 2e6da02a4748b00cf67c21cc1735c26373e9c4c8 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001// Horizontal dividers
2//
3// Dividers (basically an hr) within dropdowns and nav lists
4
5@mixin nav-divider($color: #e5e5e5) {
6 height: 1px;
7 margin: (($line-height-computed / 2) - 1) 0;
8 overflow: hidden;
9 background-color: $color;
10}