1
0

Merge branch 'main' into vue3

This commit is contained in:
Dominik Pschenitschni
2021-10-15 20:43:11 +02:00
16 changed files with 126 additions and 80 deletions

View File

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