&:hover
The simplest way of adding :hover
styles to an element is to use the &
selector:
Then import the styles into your component:
@mixin hover
If you have postcss-preset-mantine in your
project, you can use @mixin hover
to add hover styles. Unlike &:hover
,
@mixin hover
will also add styles for touch devices.
The code above will be transformed into:
Is there a way to add hover styles inline in jsx?
Mantine does not provide a way to add hover styles inline in jsx as a library feature. However, in your project you can use any third-party styling library that supports inline styles, for example styled-components or emotion.