Skip to content

Commit

Permalink
Set button border-radius to 0.5rem
Browse files Browse the repository at this point in the history
  • Loading branch information
Dantemss committed Jan 17, 2024
1 parent a6ee054 commit 4b3b9e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const StyledButton = styled.button<{ variant: ButtonVariant }>`
height: 4rem;
padding: 0 3rem;
border: 0;
border-radius: 5px;
border-radius: 0.5rem;
box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
transition: all 0.2s ease-in-out;
text-decoration: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const StyledDropdownMenuButton = styled.button<{ variant: ButtonVariant; width?:
align-items: center;
border: 0;
border-radius: 5px;
border-radius: 0.5rem;
box-shadow: 0px 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
display: inline-flex;
flex-direction: row;
Expand Down

0 comments on commit 4b3b9e5

Please sign in to comment.