Skip to content

Instantly share code, notes, and snippets.

@itsKnight847
Last active January 10, 2019 09:48
Show Gist options
  • Save itsKnight847/eedd74093645e23fdfec441a88dcdfdd to your computer and use it in GitHub Desktop.
Save itsKnight847/eedd74093645e23fdfec441a88dcdfdd to your computer and use it in GitHub Desktop.
visual composer rtl snippet
@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