Responsive Stacking Order
Hi can you please provide the css to reverse the stacking order on mobile devices, for Muffin Builder?
For example, adding the class of flip and adding the following css works on other builders, but not muffin builder.
/***[Switch column order on mobile]***/
@media only screen and ( max-width: 980px ) {
.flip {
display: -webkit-flex;
-webkit-flex-direction: column-reverse;
display: flex;
.flip {
display: -webkit-flex;
-webkit-flex-direction: column-reverse;
display: flex;
flex-direction: column-reverse !important;
}
}
Comments