🐛 Fix(custom): fix an issue the list is covered in toolbox page

This commit is contained in:
Kuingsmile
2026-01-12 11:39:39 +08:00
parent 62a9e2bb7d
commit 9accc4e4da

View File

@@ -14,11 +14,12 @@ html, body {
flex-direction: column; flex-direction: column;
gap: 1.25rem; gap: 1.25rem;
box-sizing: border-box; box-sizing: border-box;
background: var(--color-surface);
} }
/* Card Base */ /* Card Base */
.toolbox-card { .toolbox-card {
overflow: hidden; overflow: auto;
border: 1px solid var(--color-border-secondary); border: 1px solid var(--color-border-secondary);
border-radius: var(--radius-xl); border-radius: var(--radius-xl);
background: var(--color-surface); background: var(--color-surface);
@@ -206,6 +207,7 @@ html, body {
/* Items Card */ /* Items Card */
.items-card { .items-card {
border-radius: var(--radius-lg); border-radius: var(--radius-lg);
height: 230px;
} }
.card-title { .card-title {