From 6f9a75d1c7f9733e97126dbf70aba75338db95d7 Mon Sep 17 00:00:00 2001 From: aleksandr-raw <104529174+aleksandr-raw@users.noreply.github.com> Date: Tue, 7 May 2024 13:31:14 +0400 Subject: [PATCH] styled select list background --- .../CustomInput/CountrySelector/CountrySelector.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/components/ViewPublicationPage/ContactForm/CustomInput/CountrySelector/CountrySelector.tsx b/lib/components/ViewPublicationPage/ContactForm/CustomInput/CountrySelector/CountrySelector.tsx index 8b260a8..16e3304 100644 --- a/lib/components/ViewPublicationPage/ContactForm/CustomInput/CountrySelector/CountrySelector.tsx +++ b/lib/components/ViewPublicationPage/ContactForm/CustomInput/CountrySelector/CountrySelector.tsx @@ -20,6 +20,13 @@ export const CountrySelector:FC = ({setMask}) => { value={country} onChange={handleChange} renderValue={(value) => value} + MenuProps={{ + PaperProps: { + style: { + backgroundColor: theme.palette.background.default, + }, + }, + }} sx={{ minWidth: 50, backgroundColor: theme.palette.background.default,