fix(ui): remove whitespace between components for integrated layout
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m1s
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / docker (push) Has been cancelled

This commit is contained in:
hsiegeln
2026-03-28 14:52:53 +01:00
parent ef9d8c8066
commit 5cb3de03af
2 changed files with 3 additions and 6 deletions

View File

@@ -268,7 +268,7 @@ function LayoutContent() {
<ContentTabs active={scope.tab} onChange={setTab} scope={scope} />
)}
<main style={{ flex: 1, overflow: 'auto', padding: isAdminPage ? '1.5rem' : '0.75rem 1.5rem' }}>
<main style={{ flex: 1, overflow: 'auto', padding: isAdminPage ? '1.5rem' : 0 }}>
<Outlet />
</main>
</AppShell>

View File

@@ -2,7 +2,6 @@
.content {
flex: 1;
overflow-y: auto;
padding: 20px 24px 40px;
min-width: 0;
background: var(--bg-body);
}
@@ -15,9 +14,7 @@
/* Table section */
.tableSection {
background: var(--bg-surface);
border: 1px solid var(--border-subtle);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-card);
border-bottom: 1px solid var(--border-subtle);
overflow: hidden;
}
@@ -25,7 +22,7 @@
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px 16px;
padding: 8px 12px;
border-bottom: 1px solid var(--border-subtle);
}