0

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?

Victor M
  • 603
  • 4
  • 22

2 Answers2

2
<Button styles={{ root: { ':active': { transform: 'none' } } }}>test</Button>
0

Or globally:

     <MantineProvider
        theme={{
          components: {
            Button: {
              styles: {
                root: { ":active": { transform: "none" } },
              },
            },
          },
        }}
      >
        {...app}
      </MantineProvider>
Brad Stewart
  • 333
  • 2
  • 15