completionId: cgen-78291d4f1f0c4a98af3fc4912d2fe46d
cgen-78291d4f1f0c4a98af3fc4912d2fe46d
This commit is contained in:
parent
7fd9243851
commit
e5fa79499d
1 changed files with 8 additions and 1 deletions
|
|
@ -134,7 +134,14 @@ export default function CodeLayout({ children, hideFooter }: LayoutProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={cn("min-h-screen transition-all duration-200", theme.wallpaperClass)}>
|
<div className={cn("min-h-screen transition-all duration-200", theme.wallpaperClass)}>
|
||||||
<header className="sticky top-0 z-50 border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60 animate-slide-down overflow-hidden">
|
<header
|
||||||
|
className="sticky top-0 z-50 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60 animate-slide-down overflow-hidden transition-all duration-200"
|
||||||
|
style={{
|
||||||
|
borderBottomColor: theme.accentHex,
|
||||||
|
borderBottomWidth: "2px",
|
||||||
|
boxShadow: `0 8px 32px ${theme.accentHex}15`,
|
||||||
|
}}
|
||||||
|
>
|
||||||
<div className="container mx-auto max-w-7xl flex min-h-16 h-auto items-center justify-between px-3 md:px-4 py-2 gap-1 md:gap-3 lg:gap-4 min-w-0 overflow-hidden">
|
<div className="container mx-auto max-w-7xl flex min-h-16 h-auto items-center justify-between px-3 md:px-4 py-2 gap-1 md:gap-3 lg:gap-4 min-w-0 overflow-hidden">
|
||||||
{/* Logo */}
|
{/* Logo */}
|
||||||
<div className="flex items-center shrink-0 relative">
|
<div className="flex items-center shrink-0 relative">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue