Created
November 17, 2014 22:58
-
-
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.
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
// 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