Skip to content

Commit

Permalink
add backgrnd color
Browse files Browse the repository at this point in the history
  • Loading branch information
RODO94 committed Nov 29, 2024
1 parent 663e49f commit a0775e8
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,13 @@ const ExternalPortalForm: React.FC<{
role="status"
aria-atomic={true}
aria-live="polite"
ListboxProps={{ sx: { padding: 0 } }}
fullWidth
ListboxProps={{
sx: (theme) => ({
paddingY: 0,
backgroundColor: theme.palette.background.default,
}),
}}
onChange={(_event, newValue: Flow) => {
formik.setFieldValue("flowId", newValue.id);
}}
Expand Down

0 comments on commit a0775e8

Please sign in to comment.