You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, I'm trying to change the scrollbar inside the react-modal component, I'm using inline styles and I've tried to use like this inside the "content" property:
Summary:
Basically, I'm trying to change the scrollbar inside the react-modal component, I'm using inline styles and I've tried to use like this inside the "content" property:
"&::-webkit-scrollbar": {
width: "20px",
},
"&::-webkit-scrollbar-track": {
boxShadow: "inset 0 0 5px grey",
borderRadius: "10px",
},
"&::-webkit-scrollbar-thumb": {
background: "red",
borderRadius: "10px",
},
but not changes, has any way to change the scrollbar with inline styling?
The text was updated successfully, but these errors were encountered: