Skip to content

Commit 7b3e77b

Browse files
committed
fix: navbar size
1 parent c2b8c9d commit 7b3e77b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Container.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ContainerContainer = styled.nav<ContainerContainerProps>`
2525
${({ theme }) => styles(theme)}
2626
max-width: ${v.width};
2727
${({ padding }) => paddingMap[padding]}
28-
${({ topBarPadding }) => topBarPadding && 'padding-top: 48px;'}
28+
${({ topBarPadding }) => topBarPadding && 'padding-top: 72px;'}
2929
margin: 0 auto;
3030
`
3131

src/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const { vars, v } = navBarVariables
1717

1818
const NavbarContainer = styled.header`
1919
width: 100%;
20-
height: 48px;
20+
height: 72px;
2121
background-color: ${v.backgroundColor};
2222
color: ${v.textColor};
2323
border-bottom: ${({ theme }) => theme.styles.border()};

0 commit comments

Comments
 (0)