Skip to content

Commit

Permalink
Merge pull request #3371 from nextcloud/backport/3369/stable27
Browse files Browse the repository at this point in the history
[stable27] fix: Avoid 3px offset on public share links
  • Loading branch information
juliusknorr authored Dec 21, 2023
2 parents fb81870 + 0d1f1b0 commit 5efe785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions css/files.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
#richdocumentsframe {
background-color: #fff;
width:100%;
height: calc(100vh - 50px + 3px);
height: 100vh;
display:block;
position:absolute;
top: -3px;
top: 0px;
left: 0;
z-index:110;
&.full {
Expand Down

0 comments on commit 5efe785

Please sign in to comment.