styled select list background

This commit is contained in:
aleksandr-raw 2024-05-07 13:31:14 +04:00
parent 5c1bd52dcd
commit 6f9a75d1c7

@ -20,6 +20,13 @@ export const CountrySelector:FC<CountrySelectorProps> = ({setMask}) => {
value={country}
onChange={handleChange}
renderValue={(value) => value}
MenuProps={{
PaperProps: {
style: {
backgroundColor: theme.palette.background.default,
},
},
}}
sx={{
minWidth: 50,
backgroundColor: theme.palette.background.default,