fix: config bar layout — override section's flex-direction to row
All checks were successful
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m8s
CI / docker (push) Successful in 1m5s
CI / deploy-feature (push) Has been skipped
CI / deploy (push) Successful in 37s

The .section base class sets flex-direction: column, which caused the
config bar items (App Log Level, Agent Log Level, etc.) to stack
vertically instead of displaying in a horizontal row.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-11 11:50:50 +02:00
parent 1539c7a67b
commit 1b358f2e10

View File

@@ -34,6 +34,8 @@
/* Application config bar — card styling via sectionStyles.section */
.configBar {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-end;
gap: 20px;
padding: 12px 16px;