File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ import { useAppState } from '~/_state/use-app-state';
22
22
import { LuX } from '@qwikest/icons/lucide' ;
23
23
import { DocsNavigation } from '../navigation-docs/navigation-docs' ;
24
24
import { useKitMenuItems } from '~/routes/layout' ;
25
+ import { cn } from '@qwik-ui/utils' ;
25
26
26
27
export interface HeaderProps {
27
28
showVersion ?: boolean ;
@@ -128,7 +129,12 @@ export default component$(({ showVersion = false }: HeaderProps) => {
128
129
const { theme, setTheme } = useTheme ( ) ;
129
130
130
131
return (
131
- < div class = "bg-background sticky top-0 z-10 flex h-16 justify-center border-b" >
132
+ < div
133
+ class = { cn (
134
+ 'bg-background sticky top-0 z-10 flex h-16 justify-center border-b' ,
135
+ theme ?. includes ( 'brutalist' ) && 'border-b-2' ,
136
+ ) }
137
+ >
132
138
< header class = "xs:gap-8 flex w-full max-w-screen-2xl items-center gap-6" >
133
139
< section class = "mr-auto flex flex-col gap-1 md:flex-row md:gap-8" >
134
140
< a href = "/" aria-label = "Qwik UI Logo" class = "lg:ml-8" >
You can’t perform that action at this time.
0 commit comments