Skip to content

Commit

Permalink
fix display
Browse files Browse the repository at this point in the history
  • Loading branch information
cs0x7f committed Apr 29, 2024
1 parent 4bed9cb commit 3446e8d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,12 @@ html:not(.m) #leftbar div > div:hover > span, #leftbar div > div > span.icon, #l
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
height: calc(100% - env(safe-area-inset-bottom));
right: 0;
bottom: 0;
left: env(safe-area-inset-left);
top: env(safe-area-inset-top);
right: env(safe-area-inset-right);
bottom: env(safe-area-inset-bottom);
visibility: hidden;
}

Expand Down

0 comments on commit 3446e8d

Please sign in to comment.