react-poppop icon indicating copy to clipboard operation
react-poppop copied to clipboard

How to style?

Open SaadBazaz opened this issue 4 years ago • 0 comments

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.

SaadBazaz avatar Oct 26 '21 20:10 SaadBazaz