wix-style-react
Version:
18 lines (16 loc) • 397 B
CSS
/* st-namespace-reference="../../../../../src/Layout/LayoutComponent/styles.st.css" */
.root {
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
}
/*
* the following is a fallback for IE11
* which lacks support for css grid
*/
@media all and (-ms-high-contrast:none) {
.root {
display: -ms-flexbox;
-ms-flex-wrap: wrap;
-ms-flex-dirextion: row-reverse;
}
}