Styles that I have passed in modal
const customStyles = {
content: {
top: "50%",
left: "50%",
right: "auto",
bottom: "auto",
marginRight: "-50%",
transform: "translate(-50%, -50%)",
background: "rgba(22, 11, 139, 0.8)",
},
};
I want to remove the pagination button as well as Mapbox text from the background
.ReactModal__Overlay {
z-index: 1000;
}
this workes well
Hey, same issue here..
Where exactly can I do that change? @diasbruno ?
Thanks!
@philxavier .ReactModal__Overlay is the default css class that react-modal generates. So you just need to add to your css something like @dhairyasenjaliya suggested...you just have to adapt to your case.
It works! Thanks a bunch
Awesome!
Most helpful comment
.ReactModal__Overlay {
z-index: 1000;
}
this workes well