From 020b12df7dd63388ef83f938ff7dc82a539c7684 Mon Sep 17 00:00:00 2001 From: George Lima Date: Thu, 20 Dec 2018 15:55:27 -0300 Subject: [PATCH] hotfix: add ellipsis in select value --- app/components/select.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/components/select.js b/app/components/select.js index 0a3250a..758d6b9 100644 --- a/app/components/select.js +++ b/app/components/select.js @@ -28,6 +28,9 @@ const ValueWrapper = styled.div` padding: 13px; opacity: ${props => (props.hasValue ? '1' : '0.2')}; text-transform: capitalize; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; `; const SelectMenuButtonWrapper = styled.button`