feat: desk ia

This commit is contained in:
OpenSquared
2026-06-29 15:45:21 +02:00
parent 9c30b58f22
commit 69418ab650
7 changed files with 1238 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ function KeepAlivePage({ path, component: Component }: { path: string; component
if (!kept.has(path) && !isActive) return null
return (
<div className={isActive ? 'flex-1 min-h-0 overflow-hidden' : 'hidden'}>
<div className={isActive ? 'flex-1 min-h-0 overflow-y-auto' : 'hidden'}>
<Component />
</div>
)