#i want to change background color transparent of mantine modal that default showing white color,

4 messages · Page 1 of 1 (latest)

daring pagoda
#

i want to change background color transparent of mantine modal that default showing white color,

lyric mural
#

yeah good luck controlling anything 🥲

digital gazelle
#

just add these props

<Modal

styles={{
header: {
background: "none",
},
body: {
background: "none",
},
content: {
background: "none",
boxShadow: "none",
},
}}

,,,,

#

its pretty easy to control styles if you go through Styles API for each component.