// 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
}
}