moved BS out of vendor into admin

This commit is contained in:
psychobunny
2014-09-26 14:17:31 -04:00
parent d5316dbe7a
commit 8b9d58a72f
58 changed files with 6231 additions and 0 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.
.navbar-vertical-align(@element-height) {
margin-top: ((@navbar-height - @element-height) / 2);
margin-bottom: ((@navbar-height - @element-height) / 2);
}