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 {
@include target-ie11 {
max-width: 390px;
width: 100%;
}
&__header {
......@@ -41,6 +42,10 @@
@include submission-list-item;
&.is-active {
@include target-edge {
margin-left: 8px;
}
border-right: 2px solid $color--white;
transition: border $transition;
}
......
......@@ -14,6 +14,7 @@
@include target-ie11 {
display: flex;
flex-wrap: wrap;
width: 100%;
}
&__body,
......@@ -54,4 +55,18 @@
&__link {
padding: 20px;
}
&__column {
&:first-child {
@include target-ie11 {
width: 70%;
}
}
&:last-child {
@include target-ie11 {
width: 30%;
}
}
}
}
......@@ -168,6 +168,13 @@
}
}
// ms-edge specific css
@mixin target-edge {
@supports (-ms-ime-align: auto) {
@content;
}
}
@mixin table-ordering-styles {
thead {
th {
......
......@@ -16,6 +16,10 @@ html {
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@supports(overflow-y: overlay) {
overflow-y: overlay;
}
}
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