Skip to content

Instantly share code, notes, and snippets.

@flowforfrank
Created September 25, 2020 06:50
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 flowforfrank/e63ac562d2e968dd07387d19a29b85a4 to your computer and use it in GitHub Desktop.
Save flowforfrank/e63ac562d2e968dd07387d19a29b85a4 to your computer and use it in GitHub Desktop.
Ordering elements based on screensize with flexbox
.app {
display: flex;
}
@media (max-width: 600px) {
.app .sidebar {
order: -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment