Last active
January 10, 2019 09:48
-
-
Save itsKnight847/eedd74093645e23fdfec441a88dcdfdd to your computer and use it in GitHub Desktop.
visual composer rtl snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen { | |
/** | |
* rtl grid | |
*/ | |
.row.rtl { | |
direction: rtl; | |
} | |
.row.rtl .col { | |
float: right; | |
margin-right: auto; | |
margin-left: 2%; | |
} | |
.row.rtl .col.col_last { | |
margin-left: 0; | |
} | |
} | |
@media only screen and (max-width: 1000px) and (min-width: 1px){ | |
.vc_row > .row-bg-wrap + .col.span_12 { | |
display: flex; | |
flex-direction: column-reverse; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment