no message

This commit is contained in:
kuaifan 2025-08-09 09:11:16 +08:00
parent 968b2587ae
commit 439262b930
2 changed files with 4 additions and 2 deletions

View File

@ -319,6 +319,7 @@ export default {
border: 1px solid var(--modal-capsule-bor-color); border: 1px solid var(--modal-capsule-bor-color);
border-radius: 16px; border-radius: 16px;
transition: box-shadow 0.2s, background 0.2s; transition: box-shadow 0.2s, background 0.2s;
will-change: box-shadow, background;
&:hover { &:hover {
background: var(--modal-capsule-hov-bgcolor); background: var(--modal-capsule-hov-bgcolor);

View File

@ -84,13 +84,14 @@ body {
opacity: 0.8; opacity: 0.8;
width: 24px; width: 24px;
height: 24px; height: 24px;
transition: all 0.3s; transition: transform 0.3s, opacity 0.3s;
will-change: transform, opacity;
} }
&:hover { &:hover {
> svg { > svg {
opacity: 1;
transform: rotate(-90deg); transform: rotate(-90deg);
opacity: 1;
} }
} }
} }