fix: Parameter field input data is obscured with dark mode on

Signed-off-by: intelliking <tyleradams93226@gmail.com>
This commit is contained in:
intelliking
2026-02-12 13:00:14 +00:00
parent 5dd683fa0a
commit 69d6e3c7f9
@@ -173,6 +173,16 @@ const useStyles = makeStyles(theme => ({
{
color: theme.palette.warning.dark,
},
[`& input[type=text],
& input[type=password],
& input[type=email],
& input[type=number],
& textarea,
& select`]: {
backgroundColor: theme.palette.background.paper,
color: theme.palette.text.primary,
borderColor: theme.palette.divider,
},
},
},
}));