From 7eb573f1984d200d30926ef6378b431e2495adc0 Mon Sep 17 00:00:00 2001 From: eliabejr Date: Thu, 20 Dec 2018 16:14:33 -0300 Subject: [PATCH] feature: adjust padding on dropdown component --- app/components/dropdown.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/dropdown.js b/app/components/dropdown.js index 59c9101..12d8fdb 100644 --- a/app/components/dropdown.js +++ b/app/components/dropdown.js @@ -15,7 +15,7 @@ const MenuWrapper = styled.div` 0.05, props.theme.colors.activeItem, )}, ${props.theme.colors.activeItem})`}; - padding: 10px 20px; + padding: 10px 0; border-radius: 10px; margin-left: -10px; `; @@ -27,7 +27,7 @@ const MenuItem = styled.button` border-bottom-style: solid; border-bottom-color: ${props => props.theme.colors.text}; border-bottom-width: 1px; - padding: 15px 0; + padding: 15px 10px; cursor: pointer; width: 100%; text-align: left;