From 62450963b68a505a4c10e0584a1a0c63d7aa3e96 Mon Sep 17 00:00:00 2001 From: thomasvaeth Date: Fri, 5 Mar 2021 10:32:34 -0800 Subject: [PATCH] Fixed width of Select. --- lib/components/src/controls/options/Select.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/components/src/controls/options/Select.tsx b/lib/components/src/controls/options/Select.tsx index bfaa91ef8d88..9b066f0b9e10 100644 --- a/lib/components/src/controls/options/Select.tsx +++ b/lib/components/src/controls/options/Select.tsx @@ -20,6 +20,7 @@ const styleResets: CSSObject = { const OptionsSelect = styled.select(({ theme }) => ({ ...styleResets, + boxSizing: 'border-box', position: 'relative', padding: '6px 10px', width: '100%',