After changing my CSS to inline CSS, I encountered an issue when trying to change the button:hover style using inline CSS. Unfortunately, it's not working as expected. Is there a solution to this problem?
<button
style={{
borderRadius: "10px",
backgroundColor: "#004577",
color: "#ffffff",
border: "0px",
width: "auto",
}}
className=" d-flex col-4 justify-content-center p-2"
type="submit">
Update profile
</button>
I have attempted to fix this issue without success.