Reduce landscape side padding: 8px base (safe-area-inset handles the rest)

20px + safe-area was too much — the inset alone provides Dynamic Island
clearance, only need minimal base padding.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Anton Volnuhin 2026-02-07 23:43:12 +03:00
parent 2d8cf00c3b
commit 51a5d39c45

View File

@ -748,8 +748,8 @@ body {
}
.container {
padding-left: calc(20px + env(safe-area-inset-left));
padding-right: calc(20px + env(safe-area-inset-right));
padding-left: calc(8px + env(safe-area-inset-left));
padding-right: calc(8px + env(safe-area-inset-right));
}
.chart-wrapper {