Added original Magazine template for reference.

This commit is contained in:
2022-10-18 06:47:32 -05:00
parent 036d679d79
commit 91f583fc28
111 changed files with 23925 additions and 0 deletions

View File

@ -0,0 +1,10 @@
// Horizontal dividers
//
// Dividers (basically an hr) within dropdowns and nav lists
@mixin nav-divider($color: #e5e5e5) {
height: 1px;
margin: (($line-height-computed / 2) - 1) 0;
overflow: hidden;
background-color: $color;
}