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

ensure layout appears correctly when loading listings in ie

parent e45f8385
No related branches found
No related tags found
No related merge requests found
.listing { .listing {
@include target-ie11 { @include target-ie11 {
max-width: 390px; max-width: 390px;
width: 100%;
} }
&__header { &__header {
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
@include target-ie11 { @include target-ie11 {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
width: 100%;
} }
&__body, &__body,
...@@ -54,4 +55,18 @@ ...@@ -54,4 +55,18 @@
&__link { &__link {
padding: 20px; padding: 20px;
} }
&__column {
&:first-child {
@include target-ie11 {
width: 70%;
}
}
&:last-child {
@include target-ie11 {
width: 30%;
}
}
}
} }
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