fix: improve App Config slide-in panel layout
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 59s
CI / docker (push) Successful in 54s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 26s

- Narrowed panel from 640px to 520px so main table columns stay visible
- Settings grid uses CSS grid (3 columns) for proper wrapping
- Removed unused PanelActions component that caused white footer bar

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-26 21:49:03 +01:00
parent bf84f1814f
commit ef9ec6069f
2 changed files with 4 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
.widePanel {
width: 640px !important;
width: 520px !important;
}
.panelSection {
@@ -16,9 +16,9 @@
}
.settingsGrid {
display: flex;
flex-wrap: wrap;
gap: 16px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 12px;
}
.field {