fix: newtab layout (#497)

This commit is contained in:
Dani Akash
2026-03-19 20:40:38 +05:30
committed by GitHub
parent 5bb6143373
commit 19069cb9c4
2 changed files with 2 additions and 2 deletions

View File

@@ -97,7 +97,7 @@ export const SidebarLayout: FC = () => {
{/* Main content - full width, centered */}
{location.pathname === '/home/chat' ? (
<main className="h-screen overflow-hidden">
<main className="relative h-dvh overflow-hidden">
<Outlet />
</main>
) : (

View File

@@ -131,7 +131,7 @@ export const NewTabChat: FC = () => {
if (!selectedProvider) return null
return (
<div className="flex h-full flex-col overflow-hidden">
<div className="absolute inset-0 flex flex-col overflow-hidden">
<div className="mx-auto w-full max-w-3xl">
<ChatHeader
selectedProvider={selectedProvider}