fix(ui): preserve margin-top: 0 for onboarding mode

- Change margin from -12px -16px -32px to 0 -16px -32px
- Preserves zero top offset required for onboarding mode
- Prevents clipping of top edge/actions area when padding-top: 0
This commit is contained in:
Val Alexander
2026-03-02 09:36:08 -06:00
committed by Val Alexander
parent 24a13c05b3
commit eb2e20c994

View File

@@ -8,7 +8,7 @@
grid-template-columns: 260px minmax(0, 1fr);
gap: 0;
height: calc(100vh - 160px);
margin: -12px -16px -32px;
margin: 0 -16px -32px; /* preserve margin-top: 0 for onboarding mode */
border-radius: var(--radius-xl);
border: 1px solid var(--border);
background: var(--panel);