Skip to content

Commit

Permalink
Fix doubling the height of the content area
Browse files Browse the repository at this point in the history
Signed-off-by: chylex <[email protected]>
  • Loading branch information
chylex authored and anoymouserver committed May 28, 2022
1 parent 2b254d3 commit 083b0a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion css/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 083b0a1

Please sign in to comment.