Fix doubling the height of the content area

Signed-off-by: chylex <contact@chylex.com>
This commit is contained in:
chylex 2022-05-27 20:25:41 +02:00 committed by anoy
parent 2b254d3483
commit 083b0a1a74
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ The format is mostly based on [Keep a Changelog](https://keepachangelog.com/en/1
- Fix updated api not returning any item after marking item as read (#1713)
- Fix deprecation warning for strip_tags() on a null value (#1766)
- Fix selected item being set incorrectly when using default ordering or newest first ordering (#1324)
- Fix doubling the height of the content area (#1796)
# Releases

View File

@ -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;
}