#`subtle` variant of **Button**
2 messages · Page 1 of 1 (latest)
you can use styles API to do that:
const useStyles = createStyles(() => ({
root: {
[`&:hover`]: {
backgroundColor: "red"
}
},
}))
2 messages · Page 1 of 1 (latest)
Is there a way to override or disable the hover behavior of the subtle Button variant?
you can use styles API to do that:
const useStyles = createStyles(() => ({
root: {
[`&:hover`]: {
backgroundColor: "red"
}
},
}))