From 083b0a1a747cbaf5d38c6073b9bee389eeb09792 Mon Sep 17 00:00:00 2001 From: chylex Date: Fri, 27 May 2022 20:25:41 +0200 Subject: Fix doubling the height of the content area Signed-off-by: chylex --- css/content.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'css') diff --git a/css/content.css b/css/content.css index f2dff8ee2..2e64f61bd 100644 --- a/css/content.css +++ b/css/content.css @@ -137,7 +137,8 @@ #app-content:not(.explore) #articles:after { content: ''; display: block; - height: 100%; + /* Subtract the height of the Nextcloud header. */ + height: calc(100vh - 50px); background-repeat: no-repeat; } -- cgit v1.2.3