just something to test

This commit is contained in:
Stephen
2019-11-04 21:03:48 -08:00
parent 931b897f65
commit 273510547c
114 changed files with 24958 additions and 59 deletions

View File

@@ -0,0 +1,9 @@
// Navbar vertical align
//
// Vertically center elements in the navbar.
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
@mixin navbar-vertical-align($element-height) {
margin-top: (($navbar-height - $element-height) / 2);
margin-bottom: (($navbar-height - $element-height) / 2);
}