summaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorchylex <contact@chylex.com>2022-05-27 20:25:41 +0200
committeranoy <anoymouserver@users.noreply.github.com>2022-05-28 16:39:50 +0200
commit083b0a1a747cbaf5d38c6073b9bee389eeb09792 (patch)
tree23a659a8298fa829e5bf3e14480a152217d821d2 /css
parent2b254d3483592cd855383fe82307aadddcab31da (diff)
Fix doubling the height of the content area
Signed-off-by: chylex <contact@chylex.com>
Diffstat (limited to 'css')
-rw-r--r--css/content.css3
1 files changed, 2 insertions, 1 deletions
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;
}