hotfix: add ellipsis in select value

This commit is contained in:
George Lima 2018-12-20 15:55:27 -03:00
parent 150f578a86
commit 020b12df7d
1 changed files with 3 additions and 0 deletions

View File

@ -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`