Skip to content

Commit

Permalink
fix(css): tab container too high
Browse files Browse the repository at this point in the history
  • Loading branch information
azarz committed Feb 15, 2024
1 parent 98018a9 commit 456b747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/css/tabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/* Bottom menu */
#tabContainer {
position: absolute;
top: calc(100% - 72px - var(--safe-area-inset-bottom));
top: calc(100% - 72px - max(calc(var(--safe-area-inset-bottom) - 10px), 0px));
height: fit-content;
width: 100%;
background-color: #f4f6f8;
Expand Down

0 comments on commit 456b747

Please sign in to comment.