Skip to content

Instantly share code, notes, and snippets.

@M-Drummond
Created May 6, 2015 03:34
Show Gist options
  • Save M-Drummond/03442f9177ab293308f1 to your computer and use it in GitHub Desktop.
Save M-Drummond/03442f9177ab293308f1 to your computer and use it in GitHub Desktop.
Centered, responsive-friendly menu
.top-menu {
@media all and (min-width: 979px) {
.ty-menu__items {
text-align: center;
}
.ty-menu__item {
display: inline-block !important ;
float: none;
}
.visible-phone {
display: none !important ;
}
}
.ty-menu__item-link {
text-transform: lowercase;
font-size: 18px;
}
.ty-menu__item.ty-menu__item-active .ty-menu__item-link ,
.ty-menu__item:hover .ty-menu__item-link {
background: transparent;
color: @primary ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment