fix: unexpected hover behavior of collection sidebar (#4490)

This commit is contained in:
JimmFly
2023-09-25 18:22:59 +08:00
committed by LongYinan
parent 08c65b1227
commit eab5ad3f12
@@ -62,10 +62,12 @@ export const content = style({
export const postfix = style({
justifySelf: 'flex-end',
visibility: 'hidden',
opacity: 0,
pointerEvents: 'none',
selectors: {
[`${root}:hover &`]: {
visibility: 'visible',
opacity: 1,
pointerEvents: 'all',
},
},
});