diff --git a/components/Button.tsx b/components/Button.tsx index 0ac5c87..af80c3f 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -13,7 +13,6 @@ const Btn = styled.button` cursor: pointer; background: none; color: ${({ dark, theme }) => (dark ? theme.colors.dark.text : theme.colors.light.text)}; - padding: 1rem; border: ${({ variant, dark, theme }) => variant === 'outline' ? `2px solid ${dark ? theme.colors.dark.text : theme.colors.light.text}`