From 19a0caa7af8a6098293f37b4603494644eecc399 Mon Sep 17 00:00:00 2001 From: katty barroso Date: Tue, 15 Oct 2024 19:33:47 +0200 Subject: [PATCH] Fix button border --- fabric/src/components/Button/WalletButton.tsx | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/fabric/src/components/Button/WalletButton.tsx b/fabric/src/components/Button/WalletButton.tsx index 0488669e84..a09a120c0c 100644 --- a/fabric/src/components/Button/WalletButton.tsx +++ b/fabric/src/components/Button/WalletButton.tsx @@ -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)({