From 0a396bc03ba7f2c5163b1d102f8ede7e17367c74 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Sat, 22 Jan 2022 17:36:43 +0100 Subject: [PATCH] Fix outline button hover style --- components/Button/styles.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/Button/styles.tsx b/components/Button/styles.tsx index d1fd87e..89ee559 100644 --- a/components/Button/styles.tsx +++ b/components/Button/styles.tsx @@ -9,7 +9,6 @@ export const Btn = styled.button>` color: var(--text); border: ${({ variant }) => (variant === 'outline' ? '2px solid var(--text)' : 'none')}; font-weight: bold; - font-size: ${({ variant }) => (variant === 'outline' ? '1.05rem' : 'inherit')}; text-transform: ${({ variant }) => (variant === 'outline' ? 'uppercase' : 'inherit')}; padding: ${({ variant }) => (variant === 'outline' ? '.5rem 1rem' : '0rem')}; text-align: left;