Skip to content
Snippets Groups Projects
Unverified Commit 4741d5ba authored by Chris Lawton's avatar Chris Lawton Committed by GitHub
Browse files

Merge pull request #894 from OpenTechFund/fix/listing-scrolling

Fix/listing scrolling
parents e45f8385 62137602
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 {
...@@ -41,6 +42,10 @@ ...@@ -41,6 +42,10 @@
@include submission-list-item; @include submission-list-item;
&.is-active { &.is-active {
@include target-edge {
margin-left: 8px;
}
border-right: 2px solid $color--white; border-right: 2px solid $color--white;
transition: border $transition; transition: border $transition;
} }
......
...@@ -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%;
}
}
}
} }
...@@ -168,6 +168,13 @@ ...@@ -168,6 +168,13 @@
} }
} }
// ms-edge specific css
@mixin target-edge {
@supports (-ms-ime-align: auto) {
@content;
}
}
@mixin table-ordering-styles { @mixin table-ordering-styles {
thead { thead {
th { th {
......
...@@ -16,6 +16,10 @@ html { ...@@ -16,6 +16,10 @@ html {
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
@supports(overflow-y: overlay) {
overflow-y: overlay;
}
} }
body { body {
......
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