blitz icon indicating copy to clipboard operation
blitz copied to clipboard

Support `@media(hover)` (needed for tailwind `hover:`)

Open liaoliao666 opened this issue 5 months ago • 5 comments

I'm currently using Tailwind and Blitz, and I've discovered that the following doesn't work:

button { class: "hover:bg-amber-500", "home" }
 .hover\:bg-amber-500 {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-amber-500);
      }
    }
  }

liaoliao666 avatar Aug 31 '25 07:08 liaoliao666