Skip to content

Commit

Permalink
fix(client): Safe Area Padding in Zero State’s Footer
Browse files Browse the repository at this point in the history
* Updated zero state’s footer’s bottom padding to include safe area
  • Loading branch information
yakovmanshin committed Oct 18, 2024
1 parent 14dc63d commit 62c9484
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 62c9484

Please sign in to comment.