Last active
August 29, 2015 14:16
-
-
Save ckieffer/4d2d1538ab1f2261ec19 to your computer and use it in GitHub Desktop.
CSS Adjustments for Drupal Bootstrap Theme's Navbar Fixed Top When Used with Ember/Navbar Admin Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* CSS Adjustments for Drupal Bootstrap Theme's Navbar Fixed Top When Used with Ember/Navbar Admin Theme. */ | |
/* Place this in header.less and recompile */ | |
.navbar-vertical .navbar-fixed-top, | |
.navbar-horizontal .navbar-fixed-top { | |
top: 40px !important; | |
} | |
.navbar-vertical.navbar-tray-open .navbar-fixed-top { | |
left: 150px !important; | |
} | |
.navbar-vertical .main-container { | |
margin-top: 40px !important; | |
} | |
.navbar-horizontal.navbar-tray-open .navbar-fixed-top { | |
top: 78px !important; | |
} | |
.navbar-horizontal .main-container { | |
margin-top: 40px !important; | |
} | |
.navbar-horizontal.navbar-tray-open .main-container { | |
margin-top: 78px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment