Skip to content

Instantly share code, notes, and snippets.

@TheHeat
Created November 17, 2014 22:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheHeat/40c6748059f218ca0357 to your computer and use it in GitHub Desktop.
Save TheHeat/40c6748059f218ca0357 to your computer and use it in GitHub Desktop.
Mixin to include with any fixed position styles to adjust for the WordPress admin bar.
// Use wherever a fixed position is declared to adjust for that pesky WP admin bar.
@mixin wp-admin-bump{
.admin-bar & {
margin-top: 46px;
@media screen and (min-width: 782px){
margin-top: 32px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment