From 1fbed2c965c6556e8a7a5e763e2deb684c66079e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Sun, 20 Jan 2019 12:04:27 -0500 Subject: [PATCH] refactor: statuspill style fixes to match designs more --- app/components/status-pill.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/status-pill.js b/app/components/status-pill.js index d4c8e53..235f50a 100644 --- a/app/components/status-pill.js +++ b/app/components/status-pill.js @@ -26,7 +26,7 @@ const Wrapper = styled.div` display: flex; background-color: #000; border-radius: 27px; - padding: 7px 13px; + padding: 8px 16px; `; const Icon = styled.img` @@ -41,6 +41,8 @@ const StatusPillLabel = styled(TextComponent)` color: ${props => props.theme.colors.statusPillLabel}; font-weight: ${props => props.theme.fontWeight.bold}; text-transform: uppercase; + font-size: 10px; + padding-top: 1px; `; type Props = {};