我有box-shadow一个<li>标签,但我transition的悬停不工作。
我的代码:
<li class="shadow-outer hover:shadow-inner transition-all duration-1000 ease-in-out cursor-pointer rounded-full w-full px-6 py-2 flex flex-row justify-between">
<span>home</span>
<span>i</span>
</li>
顺风配置:
module.exports = {
...
theme: {
boxShadow: {
inner: 'inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa',
outer: '3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa',
},
},
variants: {
extend: {
boxShadow: ['hover'],
transitionProperty: ['hover'],
transitionDuration: ['hover'],
transitionTimingFunction: ['hover'],
},
},
...
}