From aee48ae24b965ad64083de092a34ada0c7d4024a Mon Sep 17 00:00:00 2001 From: Alex Windett Date: Mon, 20 Feb 2017 16:15:36 +0000 Subject: [PATCH] fixing button padding --- ui/src/components/button/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/components/button/index.js b/ui/src/components/button/index.js index 542ebdc4..60517ff6 100644 --- a/ui/src/components/button/index.js +++ b/ui/src/components/button/index.js @@ -80,7 +80,7 @@ const style = css` align-items: center; margin: 0; - padding: ${remcalc('14 16')}; + padding: ${remcalc(14)} ${remcalc(16)}; position: relative; font-size: ${remcalc(16)}; @@ -147,12 +147,12 @@ const StyledButton = styled.button` `; const StyledAnchor = styled.a` - display: inline-block !important; + display: inline-block; ${style} `; const StyledLink = styled(Link)` - display: inline-block !important; + display: inline-block; ${style} `;