fix(content): Content height was too big

This commit is contained in:
Timothy Z. 2024-12-26 16:19:22 +02:00
parent b12e44c086
commit 97ed4b519a
3 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@
.addons-content {
width: 100%;
height: calc(100% + var(--bottom-overlay-size));
height: 100%;
margin-bottom: calc(var(--bottom-overlay-size) * -1);
display: flex;
flex-direction: column;

View file

@ -22,7 +22,7 @@
.discover-content {
width: 100%;
height: calc(100% + var(--bottom-overlay-size));
height: 100%;
margin-bottom: calc(var(--bottom-overlay-size) * -1);
display: flex;
flex-direction: row;

View file

@ -18,7 +18,7 @@
.library-content {
width: 100%;
height: calc(100% + var(--bottom-overlay-size));
height: 100%;
margin-bottom: calc(var(--bottom-overlay-size) * -1);
display: flex;
flex-direction: column;