Skip to content

Commit

Permalink
fix(client): increase padding to account for safe area (#2252)
Browse files Browse the repository at this point in the history
* Updated zero state’s footer’s bottom padding to include safe area

Co-authored-by: Daniel LaCosse <[email protected]>
  • Loading branch information
yakovmanshin and daniellacosse authored Oct 25, 2024
1 parent 805fd85 commit 615a365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/www/views/servers_view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class ServerList extends LitElement {
}
footer {
border-top: 1px solid rgba(0, 0, 0, 0.08);
padding: 24px 0 16px;
padding: 24px 0 max(16px, env(safe-area-inset-bottom));
text-align: center;
}
button {
Expand Down

0 comments on commit 615a365

Please sign in to comment.