From ff59e6fc622e073ff0fed4a3151a79356b2281c1 Mon Sep 17 00:00:00 2001 From: Kyle Gach Date: Mon, 4 Apr 2022 08:08:32 -0700 Subject: [PATCH] Merge pull request #17780 from fbredius/17225-date-control Controls: Fix date control width in addons panel --- lib/components/src/controls/Date.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/components/src/controls/Date.tsx b/lib/components/src/controls/Date.tsx index b8ddcebff979..0124cbed5db7 100644 --- a/lib/components/src/controls/Date.tsx +++ b/lib/components/src/controls/Date.tsx @@ -52,6 +52,10 @@ const FlexSpaced = styled.div(({ theme }) => ({ }, 'input:first-of-type': { marginLeft: 0, + flexGrow: 4, + }, + 'input:last-of-type': { + flexGrow: 3, }, }));