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-radius: 16px;
transition: box-shadow 0.2s, background 0.2s;
will-change: box-shadow, background;
&:hover {
background: var(--modal-capsule-hov-bgcolor);

View File

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