From 83f57c70f485ac71cab1ad8a03369b3ad39e76be Mon Sep 17 00:00:00 2001 From: fbredius-hp Date: Tue, 22 Mar 2022 15:48:47 +0100 Subject: [PATCH] 17225 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, }, }));