From 97ed4b519aa761ed52ee4e05b9eff3e058ec41a8 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 26 Dec 2024 16:19:22 +0200 Subject: [PATCH] fix(content): Content height was too big --- src/routes/Addons/styles.less | 2 +- src/routes/Discover/styles.less | 2 +- src/routes/Library/styles.less | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/Addons/styles.less b/src/routes/Addons/styles.less index be333cf2f..647b9fe26 100644 --- a/src/routes/Addons/styles.less +++ b/src/routes/Addons/styles.less @@ -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; diff --git a/src/routes/Discover/styles.less b/src/routes/Discover/styles.less index 9c6d5b5e0..b48a5e59b 100644 --- a/src/routes/Discover/styles.less +++ b/src/routes/Discover/styles.less @@ -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; diff --git a/src/routes/Library/styles.less b/src/routes/Library/styles.less index 6175f74ae..e2b4da2fc 100644 --- a/src/routes/Library/styles.less +++ b/src/routes/Library/styles.less @@ -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;