From b98a5b4db8f339d7ef94256a3c397dbefe9b9db3 Mon Sep 17 00:00:00 2001 From: Bernt Christian Egeland Date: Fri, 20 Aug 2021 06:58:08 +0200 Subject: [PATCH] reverted padding on buttons. --- web/src/components/Button.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/Button.jsx b/web/src/components/Button.jsx index 1e9614eba..2e11941a2 100644 --- a/web/src/components/Button.jsx +++ b/web/src/components/Button.jsx @@ -66,7 +66,7 @@ export default function Button({ let classes = `whitespace-nowrap flex items-center space-x-1 ${className} ${ButtonTypes[type]} ${ ButtonColors[disabled ? 'disabled' : color][type] - } font-sans inline-flex font-bold uppercase text-xs px-1.5 md:px-2 sm:py-0 md:py-2 rounded outline-none focus:outline-none ring-opacity-50 transition-shadow transition-colors ${ + } font-sans inline-flex font-bold uppercase text-xs px-1.5 py-2 md:py-2 rounded outline-none focus:outline-none ring-opacity-50 transition-shadow transition-colors ${ disabled ? 'cursor-not-allowed' : 'focus:ring-2 cursor-pointer' }`;