tailwindcss icon indicating copy to clipboard operation
tailwindcss copied to clipboard

Support theme values for has variant

Open crswll opened this issue 4 months ago • 0 comments

This allows you to add values for the has variant to your theme so we can do things like:

theme: {
  has: {
    headers: ':where(h1, h2, h3, h4, h5, h6)'
  }
}
<div class="has-headers:bg-green-500">...</div>

over using arbitrary values all the time like:

<div class="has-[:where(h1,h2,h3,h4,h5,h6)]:bg-green-500">...</div>

crswll avatar Jan 05 '24 02:01 crswll