react-poppop
react-poppop copied to clipboard
How to style?
Hey, Thanks for the repo.
How can I apply styles so I can change how the popup looks like?
Tried this:
<PopPop position="centerCenter"
open={true}
closeBtn={false}
closeOnEsc={false}
closeOnOverlay={false}
style={{
backdropFilter: "blur(10px)",
backgroundColor: "transparent",
boxShadow: "none",
display: "flex",
flexDirection: "column",
alignItems: "center"
}}
>
<h1> Test 123 </h1>
</PopPop>
But it does not have any effect.