Makes the star icon rotate around its actual centre axis (#29844)

This commit is contained in:
nicolas 2024-04-03 23:10:02 +02:00 committed by GitHub
parent cde3206478
commit c6da3ee828
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2244,14 +2244,14 @@ a.account__display-name {
&.activate { &.activate {
& > .icon { & > .icon {
animation: spring-rotate-in 1s linear; animation: spring-rotate-in 1s linear;
transform-origin: 50% 55%; transform-origin: 50% 52%;
} }
} }
&.deactivate { &.deactivate {
& > .icon { & > .icon {
animation: spring-rotate-out 1s linear; animation: spring-rotate-out 1s linear;
transform-origin: 50% 55%; transform-origin: 50% 52%;
} }
} }
} }