Skip to content

Instantly share code, notes, and snippets.

@michaelbourne
Created April 25, 2018 21:55
Show Gist options
  • Save michaelbourne/d4afb3bd5b0f8e79ce015614a297edaa to your computer and use it in GitHub Desktop.
Save michaelbourne/d4afb3bd5b0f8e79ce015614a297edaa to your computer and use it in GitHub Desktop.
Swap Columns on Mobile
@media (min-width: 768px) {
.x-section .x-container.swapcolumns {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment