mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-08 06:54:24 +00:00
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:
committed by
Val Alexander
parent
24a13c05b3
commit
eb2e20c994
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user