From c7cad093f1192b21a5ec31ad8b6a5e609bb586bb Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Thu, 20 Dec 2018 16:42:00 +0100 Subject: [PATCH] fix token input overflow --- src/components/Select/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Select/index.js b/src/components/Select/index.js index 5c6bef36..086caee9 100644 --- a/src/components/Select/index.js +++ b/src/components/Select/index.js @@ -10,6 +10,10 @@ const styles = isSearchable => ({ width: '100%', color: colors.TEXT_SECONDARY, }), + valueContainer: base => ({ + ...base, + overflow: 'hidden', + }), control: (base, { isDisabled }) => ({ ...base, minHeight: 'initial',