Fix navbar scrolling off-screen by using fixed header in chat mode
This commit is contained in:
@@ -42,7 +42,10 @@ export default function PageLayout({
|
||||
"flex flex-col bg-gradient-to-b from-background to-background/95",
|
||||
noPadding ? "h-[100dvh] overflow-hidden" : "min-h-screen",
|
||||
)}>
|
||||
<header className="border-b border-border bg-card/80 backdrop-blur-sm">
|
||||
<header className={cn(
|
||||
"border-b border-border bg-card/80 backdrop-blur-sm",
|
||||
noPadding && "fixed inset-x-0 top-0 z-50",
|
||||
)}>
|
||||
<div className="mx-auto flex h-14 max-w-4xl items-center justify-between px-4">
|
||||
<Link to="/" className="text-lg font-bold tracking-tight text-primary">
|
||||
Movie Loop
|
||||
|
||||
Reference in New Issue
Block a user