Created
March 22, 2018 09:32
-
-
Save jonnykates/638ee8c758c5feb14b4941d9a0001b96 to your computer and use it in GitHub Desktop.
This file contains 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
// Home icon | |
ul.topLevel > li.menu1 { | |
> a { | |
font-size: 0; // Take down the label | |
&:before { | |
content: '\f015'; | |
font-family: 'FontAwesome'; | |
display: block; | |
font-size: 22px; // Reinstate the icon | |
font-weight: normal; | |
display: inline-block; | |
vertical-align: middle; | |
} | |
} | |
@media (max-width: $mobile-breakpoint) { | |
display: none; // Don't need the home icon on mobile | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment