From 853eff095e2ad156ac10c0f43962585e9a407cd5 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 23 Aug 2021 13:29:31 +0200 Subject: [PATCH] :art: Update select height to be dynamic --- .../src/ui/components/input/SelectInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework-plugins/lisk-framework-dashboard-plugin/src/ui/components/input/SelectInput.tsx b/framework-plugins/lisk-framework-dashboard-plugin/src/ui/components/input/SelectInput.tsx index d5321afdde0..66d6cbd0375 100644 --- a/framework-plugins/lisk-framework-dashboard-plugin/src/ui/components/input/SelectInput.tsx +++ b/framework-plugins/lisk-framework-dashboard-plugin/src/ui/components/input/SelectInput.tsx @@ -36,7 +36,7 @@ type Props = SingleSelectProps | MultiSelectProps; const customSelectStyles: StylesConfig = { container: (currentStyles, _state) => ({ ...currentStyles, - height: '40px', + minHeight: '40px', boxSizing: 'border-box', fontStyle: 'normal', fontWeight: 'normal', @@ -44,7 +44,7 @@ const customSelectStyles: StylesConfig = { }), valueContainer: (currentStyles, _state) => ({ ...currentStyles, - height: '40px', + minHeight: '40px', }), option: (currentStyles, state) => ({ ...currentStyles,