feat: show up to 4 recent lists on the overview page
This commit is contained in:
parent
4fef047d74
commit
97dd55d946
1 changed files with 7 additions and 3 deletions
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue