Skip to content

Commit 850efad

Browse files
authored
feat(app): improve header (#382)
1 parent 91d3628 commit 850efad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/app/src/components/Header/Header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import { HeaderNavigation } from "./HeaderNavigation";
55
import { ActiveNavigationLink } from "./ActiveNagivationLink";
66

77
export const Header = () => (
8-
<div className="bg-violet-600">
8+
<div className="bg-primary">
99
<Container
1010
as="header"
11-
className="flex h-16 items-center justify-between border-b border-violet-500 text-white"
11+
className="flex h-16 items-center justify-between border-b border-violet-600 text-white"
1212
>
1313
<Link href="/">
1414
<div className="h-10 w-24 sm:w-36">

apps/app/src/components/Header/HeaderNavigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const HeaderNavigation = ({ children }: { children: ReactNode }) => {
1919
<nav
2020
id="header-navigation"
2121
className={twMerge(
22-
"fixed top-0 left-0 z-10 h-full w-full flex-col items-center justify-center gap-5 bg-violet-600 text-sm uppercase",
22+
"fixed top-0 left-0 z-10 h-full w-full flex-col items-center justify-center gap-10 bg-primary text-xl uppercase sm:gap-5 sm:text-sm",
2323
"sm:relative sm:flex sm:h-fit sm:w-fit sm:flex-row",
2424
isOpen ? "flex" : "hidden",
2525
)}

0 commit comments

Comments
 (0)