postcss-selector-parser from 6.1.2 to 6.1.3 , this call must use ... spread
this cause my group gropu:hover not work
<script setup lang="ts">
import { ref, Teleport } from 'vue'
</script>
<template>
<div class="w-[500px] h-[500px] bg-red-300 flex justify-center items-center group">
<div class="w-[200px] h-[200px] bg-blue-300 group-hover:bg-green-300">sss</div>
</div>
</template>
<style scoped lang="less"></style>
the out put css dont have
.group:hover .group-hover\:bg-green-300 {
bg-green-300
}
tailwindcss/src/util/formatVariantSelector.js
Line 252 in b01283c
postcss-selector-parser from 6.1.2 to 6.1.3 , this call must use ... spread
this cause my group gropu:hover not work
the out put css dont have