mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-13 00:00:19 +01:00
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
12 lines
369 B
SCSS
12 lines
369 B
SCSS
// 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);
|
|
}
|