Skip to content

Commit

Permalink
Fix button border
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Oct 15, 2024
1 parent fcbb4ba commit 19a0caa
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions fabric/src/components/Button/WalletButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,13 @@ const StyledButton = styled.button`
display: inline-block;
width: 100%;
padding: 0;
border-width: 3;
border-color: transparent;
border: none;
appearance: none;
background-color: ${({ theme }) => theme.colors.backgroundPrimary};
outline: 0;
border-radius: 40px;
border-radius: 4px;
white-space: nowrap;
& > span {
border-width: 3;
border-color: ${({ theme }) => theme.colors.backgroundPrimary};
:hover {
border: ${({ theme }) => `3px solid ${theme.colors.borderSecondary}`};
}
}
border: 3px solid transparent;
`

const IdenticonWrapper = styled(Flex)({
Expand Down

0 comments on commit 19a0caa

Please sign in to comment.