Skip to content
Snippets Groups Projects
Commit 9b4405a1 authored by Todd Dembrey's avatar Todd Dembrey
Browse files

Updates to make sure that the new scroll behaviour works on small laptops

parent 5d03b647
No related branches found
No related tags found
No related merge requests found
.grouped-listing {
height: calc(100vh - var(--header-admin-height));
height: 98vh;
@include media-query(laptop-short) {
// allow for vertical scrolling on laptops
height: calc(100vh - var(--header-admin-height));
}
display: flex;
flex-direction: column;
......
.listing {
overflow-y: scroll;
overflow-y: overlay;
flex-grow: 3;
@include target-ie11 {
......
.application-display {
@include column-scrolling;
height: calc(100vh - #{$listing-header-height});
overflow-y: scroll;
padding: 20px;
@include media-query(laptop-short) {
// allow for vertical scrolling on laptops
height: calc(100vh - var(--header-admin-height) - #{$listing-header-height});
}
}
......@@ -54,6 +54,12 @@
.tab {
display: flex;
flex-direction: column;
height: calc(100vh - var(--header-admin-height) - #{$listing-header-height});
overflow-y: auto;
height: calc(100vh - #{$listing-header-height});
@include media-query(laptop-short) {
// allow for vertical scrolling on laptops
height: calc(100vh - var(--header-admin-height) - #{$listing-header-height});
}
}
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