Skip to content

Commit 356cbaf

Browse files
committed
fix: styling for rjsf select
1 parent 1845e48 commit 356cbaf

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Common/RJSF/widgets/Select.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,9 @@ export const SelectWidget = (props: WidgetProps) => {
7676
isDisabled={disabled || readonly}
7777
styles={{
7878
...commonStyles,
79-
control: (base) => ({
80-
...base,
81-
...commonStyles.control,
82-
backgroundColor: 'var(--bg-secondary)',
79+
control: (base, state) => ({
80+
...commonStyles.control(base, state),
81+
height: '36px'
8382
}),
8483
}}
8584
components={{

0 commit comments

Comments
 (0)