I would like to disable the button animation on the click. As can be seen here, when clicking on the button, the button moves. Is there an easy way to disable this?
Asked
Active
Viewed 455 times
2 Answers
0
Or globally:
<MantineProvider
theme={{
components: {
Button: {
styles: {
root: { ":active": { transform: "none" } },
},
},
},
}}
>
{...app}
</MantineProvider>

Brad Stewart
- 333
- 2
- 15