From 0b4f57ebcec7e1f3dbcd68be1ab81701dd374398 Mon Sep 17 00:00:00 2001 From: Cyperghost Date: Tue, 3 Sep 2024 08:54:18 +0200 Subject: [PATCH] Use the full available height in the `woltlabNewsfeed` box --- wcfsetup/install/files/acp/style/layout.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wcfsetup/install/files/acp/style/layout.scss b/wcfsetup/install/files/acp/style/layout.scss index 2836b9d45e..a1fad4aacc 100644 --- a/wcfsetup/install/files/acp/style/layout.scss +++ b/wcfsetup/install/files/acp/style/layout.scss @@ -889,7 +889,8 @@ html[data-color-scheme="dark"] { .woltlabNewsfeed { border-radius: 0 0 var(--wcfBorderRadius) var(--wcfBorderRadius); - height: 400px; + min-height: 400px; + height: 100%; max-width: 100%; overflow: hidden; text-align: center; @@ -970,6 +971,7 @@ html[data-color-scheme="dark"] { .acpDashboardBox__content { padding: 20px; + height: 100%; > :first-child { margin-top: 0 !important; -- 2.20.1