feat: show up to 4 recent lists on the overview page
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
kolaente 2021-10-13 21:20:46 +02:00
parent 4fef047d74
commit 97dd55d946
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -291,7 +291,11 @@ $list-spacing: 1rem;
} }
.list-cards-wrapper-2-rows { .list-cards-wrapper-2-rows {
flex-wrap: wrap; flex-wrap: wrap;
max-height: calc(#{$list-height * 2} + #{$list-spacing * 2}); max-height: calc(#{$list-height * 2} + #{$list-spacing * 2} - 4px);
overflow: hidden; overflow: hidden;
@media screen and (max-width: $mobile) {
max-height: calc(#{$list-height * 4} + #{$list-spacing * 4} - 4px);
}
} }