Last active
November 4, 2017 05:19
-
-
Save robhob/068675e75bd96681f34a93776b4940c6 to your computer and use it in GitHub Desktop.
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
/* Place the word MENU after the mobile hamburger */ | |
.mobile_menu_bar:after { | |
content: 'MENU'; | |
position: relative !important; | |
bottom: 10px; | |
left: 10%; | |
color: #c4c4c4; | |
} | |
/* Change the hamburger to X when opened */ | |
.mobile_nav.opened .mobile_menu_bar:before { | |
content: '\4d'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment