blob: c8fbf1a7d67d35140c5de3b192fd917775ac8c18 [file] [log] [blame]
Michael Landoefa037d2017-02-19 12:57:33 +02001// Navbar vertical align
2//
3// Vertically center elements in the navbar.
4// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
5
6@mixin navbar-vertical-align($element-height) {
7 margin-top: (($navbar-height - $element-height) / 2);
8 margin-bottom: (($navbar-height - $element-height) / 2);
9}