fix(ui): use display:contents on sidebar wrapper to preserve flex layout
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m2s
CI / deploy (push) Has been cancelled
CI / docker (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 14:25:20 +01:00
parent 1e6de17084
commit 77c73fe3e6

View File

@@ -229,7 +229,7 @@ function LayoutContent() {
return (
<AppShell
sidebar={
<div onClick={handleSidebarClick} style={{ height: '100%' }}>
<div onClick={handleSidebarClick} style={{ display: 'contents' }}>
<Sidebar apps={sidebarApps} />
</div>
}