From f13eb90f5e0dc7b46a2c80bec5751dda2e0d1557 Mon Sep 17 00:00:00 2001 From: Tim Connor Date: Mon, 23 Jan 2017 09:55:41 -0800 Subject: [PATCH] tc - fix select text overlap --- src/components/Select.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/Select.scss b/src/components/Select.scss index d224410cc..257e97475 100644 --- a/src/components/Select.scss +++ b/src/components/Select.scss @@ -5,8 +5,13 @@ // TODO correct inner padding, colors to match BS styles @import '~react-select/scss/default.scss'; - + .Select-input > input { height: 100%; } -} \ No newline at end of file + + .Select-value { + // Allow space for the "x" and prevent text overlap + padding-right: 3rem !important; + } +}