Steps to reproduce
Create element
Create an element with:
<div class="group bg-red p-8">
<div class="hidden md:group-hover:block bg-blue p-4">
Only visible when group is hovered
</div>
</div>
Enable group-hover state variant
Enable the group-hover state variant to the display module and compile
module.exports = {
// ...
modules: {
// ...
display: ['responsive', 'group-hover'],
// ...
}
// ...
}l
Test
Test. It won't work. It only works without the responsive prefix: group-hover:block