add scorm

This commit is contained in:
2025-11-13 11:25:18 -03:00
parent b5e0684de7
commit 16bcf4b07f
14 changed files with 104 additions and 59 deletions

View File

@@ -50,7 +50,7 @@ export default function Component({ loaderData }: Route.ComponentProps) {
const [isOpen, { toggle }] = useToggle()
return (
<div className="relative flex flex-col flex-1 min-w-0">
<div className="relative flex flex-col flex-1 min-w-0 h-full">
<header
className="bg-background/15 backdrop-blur-sm
px-4 py-2 lg:py-4 sticky top-0 z-5"
@@ -118,11 +118,7 @@ export default function Component({ loaderData }: Route.ComponentProps) {
</div>
</header>
<main className="p-4">
<div className="container mx-auto">
<Outlet />
</div>
</main>
<Outlet />
</div>
)
}