Skip to content

Commit

Permalink
align text and re-order button in nav
Browse files Browse the repository at this point in the history
  • Loading branch information
ducaale committed Jan 1, 2024
1 parent f257a08 commit 27b43c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/generator/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ const Nav = styled.nav`
flex-direction: column;
align-items: flex-start;
justify-content: center;
gap: 20px;
gap: 24px;
margin-bottom: 28px;
button {
cursor: grab;
}
`

const StyledLink = styled(Link)<{ $active: boolean }>`
text-decoration: none;
font-weight: 300;
color: ${colors.foreground};
padding-bottom: 6px;
${(props) => props.$active && `color: ${colors.primary};`}
`
Expand Down

0 comments on commit 27b43c8

Please sign in to comment.