Only apply overflow conditions to billboard cards (#19649)

This commit is contained in:
Ben Halpern 2023-06-27 15:39:29 -04:00 committed by GitHub
parent 9973100cea
commit ce902fe1f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,8 +13,10 @@
background: var(--card-bg);
color: var(--card-secondary-color);
box-shadow: 0 0 0 1px var(--card-secondary-border);
max-height: calc(100vh - var(--header-height) - 2*var(--layout-padding));
overflow: auto;
&.billboard {
max-height: calc(100vh - var(--header-height) - 2*var(--layout-padding));
overflow: auto;
}
}
&--elevated {