Skip to content
Snippets Groups Projects
Unverified Commit 07cfab04 authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by GitHub
Browse files

fix: add tight state to cat ears for workarounds

parent 45357464
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,18 @@ watch(() => props.user.avatarBlurhash, () => {
to { transform: rotate(-37.6deg) skew(-30deg); }
}
@keyframes eartightleft {
from { transform: rotate(37.6deg) skew(30deg); }
50% { transform: rotate(37.4deg) skew(30deg); }
to { transform: rotate(37.6deg) skew(30deg); }
}
@keyframes eartightright {
from { transform: rotate(-37.6deg) skew(-30deg); }
50% { transform: rotate(-37.4deg) skew(-30deg); }
to { transform: rotate(-37.6deg) skew(-30deg); }
}
.root {
position: relative;
display: inline-block;
......@@ -184,6 +196,7 @@ watch(() => props.user.avatarBlurhash, () => {
> .earLeft {
transform: rotate(37.5deg) skew(30deg);
animation: eartightleft 6s infinite;
&, &::after {
border-radius: 0 75% 75%;
......@@ -205,6 +218,7 @@ watch(() => props.user.avatarBlurhash, () => {
> .earRight {
transform: rotate(-37.5deg) skew(-30deg);
animation: eartightright 6s infinite;
&, &::after {
border-radius: 75% 0 75% 75%;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment