Skip to content

Instantly share code, notes, and snippets.

@jamiejohnsonkc
Last active June 5, 2019 14:57
Show Gist options
  • Save jamiejohnsonkc/c321666c11481f2e72c4e198be8e79a0 to your computer and use it in GitHub Desktop.
Save jamiejohnsonkc/c321666c11481f2e72c4e198be8e79a0 to your computer and use it in GitHub Desktop.
Compensate for the Bootstrap fixed top navigation bar. #scss #css #bootstrap #navbar #splash
// Compensate for the Bootstrap fixed top navigation bar.
//
// No styleguide reference.
body {
padding-top: @navbar-height;
}
// Offset fixed top navigation bar if WordPress admin bar is
// visible.
//
// No styleguide reference.
.admin-bar {
padding-top: @navbar-height + 46px;
.navbar-fixed-top {
margin-top: 46px;
}
}
@media screen and (min-width: 783px) {
.admin-bar {
padding-top: @navbar-height + 36px;
.navbar-fixed-top {
margin-top: 36px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment