🐛 Fix(custom): fix an issue the picbed switch window can't scroll in manage page

This commit is contained in:
Kuingsmile
2026-01-13 10:36:58 +08:00
parent 5e665bcba0
commit 719e8cb18c

View File

@@ -326,7 +326,7 @@ html, body {
} }
.dialog-container { .dialog-container {
overflow: hidden; overflow: auto;
border: 1px solid var(--color-border); border: 1px solid var(--color-border);
border-radius: var(--radius-lg); border-radius: var(--radius-lg);
width: 90%; width: 90%;
@@ -334,6 +334,7 @@ html, body {
max-height: 80vh; max-height: 80vh;
background: var(--color-surface); background: var(--color-surface);
box-shadow: var(--shadow-xl); box-shadow: var(--shadow-xl);
scrollbar-width: none;
} }
.dialog-header { .dialog-header {