Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
SeungJL committed Sep 11, 2024
1 parent efa3a04 commit cb77975
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/BottomNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ const Nav = styled.nav<{ height: number }>`
border-top: var(--border);
max-width: var(--max-width);
margin: 0 auto;
padding-top: 4px;
padding-top: ${(props) => (props.height > 90 ? 0 : "4px")};
padding-bottom: ${(props) => (props.height > 90 ? "4px" : 0)};
`;

const NavLink = styled(Link)<{ active: "true" | "false" } & LinkProps>`
Expand Down

0 comments on commit cb77975

Please sign in to comment.