Created
February 2, 2018 03:55
-
-
Save jbd91/e997d46380f58856af763a147cf030c3 to your computer and use it in GitHub Desktop.
Sticky Navigation Admin Bar Fix
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
| .admin-bar { | |
| #sticky-nav--container { | |
| &.sticky { | |
| top: 32px; | |
| @media screen and (max-width: 600px) { | |
| top: 0; | |
| } | |
| } | |
| } | |
| .off-canvas { | |
| top: 48px; | |
| @media screen and (max-width: 600px) { | |
| top: 0; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment