From 6c5576d54953cbff306ae4d0b0f44ce0399fde91 Mon Sep 17 00:00:00 2001 From: posimai Date: Sat, 21 Mar 2026 13:17:53 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20main=20padding=20=E3=82=92=20base.css=20?= =?UTF-8?q?=E3=81=8B=E3=82=89=E5=AE=8C=E5=85=A8=E5=88=86=E9=9B=A2=20?= =?UTF-8?q?=E2=80=94=20Ambient=E5=90=8C=E7=AD=89=E3=81=AE=E5=B7=A6?= =?UTF-8?q?=E7=AB=AF=E3=83=BB=E4=B8=8A=E8=BE=BA=E4=BD=99=E7=99=BD=E3=81=AB?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index db91e6f..803413f 100644 --- a/index.html +++ b/index.html @@ -589,8 +589,14 @@ cursor: not-allowed; } - /* ── Safe area ── */ - main { padding-bottom: max(16px, env(safe-area-inset-bottom)); } + /* ── main: base.css のデフォルト padding / max-width を打ち消す ── */ + /* base.css は main に padding:24px 20px / max-width:860px を適用するが、 + Veil は全幅ランチャーのため各セクションが自前でパディングを持つ */ + main { + padding: 0 0 max(16px, env(safe-area-inset-bottom)); + max-width: none; + margin: 0; + }