Skip to content
Snippets Groups Projects
Commit ebba3d0c authored by Chris Lawton's avatar Chris Lawton
Browse files

adding css grid fallback that works in ie 11 + edge 15/16

parent b035b7ad
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,9 @@
&--two {
> * {
flex-basis: calc(50% - 20px);
// fix for IE11 not rendering calc flex-basis correctly
flex-basis: auto;
width: calc(50% - 20px);
}
}
......@@ -40,6 +42,7 @@
> * {
flex-basis: initial;
margin: 0;
width: auto;
}
&--narrow {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment