Skip to content

Commit

Permalink
fix(StreamingServerWarning): respect safe areas
Browse files Browse the repository at this point in the history
  • Loading branch information
kKaskak committed Jan 23, 2025
1 parent 9b197c8 commit b1e8b47
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/Board/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@
}

.board-warning-container {
bottom: calc(var(--vertical-nav-bar-size) + var(--calculated-bottom-safe-inset, 0rem));
bottom: calc(var(--vertical-nav-bar-size) + 0.5rem);
margin-left: var(--safe-area-inset-left);
margin-right: var(--safe-area-inset-right);
height: 7rem;
}
}
Expand Down

0 comments on commit b1e8b47

Please sign in to comment.