fix: reply hover effect

This commit is contained in:
ShittyKopper 2024-02-04 16:42:43 +03:00
parent a149211bb4
commit 27ce301f45

View file

@ -476,7 +476,7 @@ if (props.detail) {
position: relative; position: relative;
display: flex; display: flex;
:is(.detailed, .replyRoot) &::after { :is(.detailed, .isReply) &::after {
content: ""; content: "";
position: absolute; position: absolute;
top: -12px; top: -12px;
@ -490,8 +490,8 @@ if (props.detail) {
z-index: -1; z-index: -1;
} }
:is(.detailed, .replyRoot) &:hover::after, :is(.detailed, .isReply) &:hover::after,
:is(.detailed, .replyRoot) &:focus-within::after { :is(.detailed, .isReply) &:focus-within::after {
opacity: 1; opacity: 1;
} }
} }