Skip to content

Instantly share code, notes, and snippets.

@alexanmtz
Created February 5, 2017 17:02
Show Gist options
  • Save alexanmtz/08e979b81dd17aa2e33bb8d730700185 to your computer and use it in GitHub Desktop.
Save alexanmtz/08e979b81dd17aa2e33bb8d730700185 to your computer and use it in GitHub Desktop.
Flex navigation
/*
* Mobile styles
*
*/
@media screen and (max-width: 1000px) {
html {
&.no-scroll {
overflow: hidden;
}
.flex-scroll {
display: inline-block;
display: flex;
flex-wrap: nowrap;
overflow-x: scroll;
overflow-y: hidden;
padding: 10px;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.flex {
display: flex;
flex-wrap: nowrap;
}
.flex-nav-item {
list-style-type: none;
flex: 0 0 auto;
margin-right: 10px;
width: 90%;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment