Elastic: Fix border radius in popovers on small screens (#6911)

pull/6950/head
johndoh 5 years ago committed by Aleksander Machniak
parent b10a0dbb7e
commit 4d66547034

@ -55,13 +55,15 @@
display: none; display: none;
} }
.listing { @media screen and (min-width: (@screen-width-small + 1px)) {
li:first-child { .listing {
border-radius: .25rem .25rem 0 0; li:first-child {
} border-radius: .25rem .25rem 0 0;
}
li:last-child { li:last-child {
border-radius: 0 0 .25rem .25rem; border-radius: 0 0 .25rem .25rem;
}
} }
} }
} }

Loading…
Cancel
Save