Skip to content

Instantly share code, notes, and snippets.

@navix
Created January 10, 2016 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navix/adec015e2ef7e9c1add5 to your computer and use it in GitHub Desktop.
Save navix/adec015e2ef7e9c1add5 to your computer and use it in GitHub Desktop.
Responsive by rscss
.auth-menu {
display: flex;
flex-direction: column;
...
}
@media (max-width: @tabletWidth) {
.auth-menu {
flex-direction: row-reverse;
flex-wrap: wrap;
...
}
}
@media (max-width: @mobileWidth) {
.auth-menu {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment