mcp: improve auth id type + styling fixes

This commit is contained in:
dswbx
2025-08-21 10:58:31 +02:00
parent f9184a71db
commit dcf88cf587
8 changed files with 110 additions and 99 deletions

View File

@@ -67,7 +67,7 @@ export function Content({ children, center }: { children: React.ReactNode; cente
<main
data-shell="content"
className={twMerge(
"flex flex-1 flex-row w-dvw h-full",
"flex flex-1 flex-row max-w-screen h-full",
center && "justify-center items-center",
)}
>
@@ -158,7 +158,9 @@ export function Sidebar({
data-shell="sidebar"
className="flex-col w-[var(--sidebar-width)] flex-shrink-0 flex-grow-0 h-full border-muted border-r bg-background"
>
{children}
<MaxHeightContainer className="overflow-y-scroll md:overflow-y-hidden">
{children}
</MaxHeightContainer>
</aside>
</div>
</>