From 93ef6cefd916356d9a4ad031e8731342d9025d27 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Thu, 14 Jan 2021 23:37:25 +0100 Subject: [PATCH] Update button styles --- components/Button.tsx | 1 - 1 file changed, 1 deletion(-) 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}`