import { isTouchDevice } from "~/utils/browser"; /** * Returns "hover" on a non-touch device and "active" on a touch device. To * avoid "sticky" hover on mobile. Use `&:${hover} {...}` instead of * using `&:hover {...}`. */ export const hover = isTouchDevice() ? "active" : "hover";