Replies: 1 comment 5 replies
-
you can do it like this currently: css({ "@media (hover: hover) and (pointer: fine)": { "&:hover": { bg: "red.50" } } })
// or with a config condition
// `finePointer: "@media (hover: hover) and (pointer: fine)"`
css({ _finePointer: { _hover: { bg: "red.50" } } }) |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want a hover selector that doesn't apply on mobile devices
I want to write:
And it expand to something like
I know conditions can be written as a selector or a media query. Is there a way to combine both?
Beta Was this translation helpful? Give feedback.
All reactions