Skip to content
Snippets Groups Projects
Commit 6290f625 authored by Chris Lawton's avatar Chris Lawton Committed by Todd Dembrey
Browse files

allow for scrolling the listings on mobile

parent 34b8109d
No related branches found
No related tags found
No related merge requests found
......@@ -12,10 +12,12 @@
// containing <ul>
&__list {
overflow-y: scroll;
height: calc(100vh - #{$listing-header-height});
@include media-query(tablet-landscape) {
// only allow columns to be scrolled on larger screens
height: calc(100vh - var(--header-admin-height) - #{$listing-header-height});
overflow-y: scroll;
}
@include media-query(laptop-short) {
......
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