_navbar-align.scss 385 Bytes
Newer Older
1
2
3
// Navbar vertical align
//
// Vertically center elements in the navbar.
XhmikosR's avatar
XhmikosR committed
4
5
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);`
// to calculate the appropriate top margin.
6

Mark Otto's avatar
Mark Otto committed
7
8
9
10
// @mixin navbar-vertical-align($element-height) {
//   margin-top: (($navbar-height - $element-height) / 2);
//   margin-bottom: (($navbar-height - $element-height) / 2);
// }