more fancy

This commit is contained in:
booploops 2022-02-17 03:26:33 -08:00
parent 2719b3da4e
commit 8e01d59398

View file

@ -909,15 +909,23 @@
.mediaitem-artwork { .mediaitem-artwork {
animation: replayFadeIn .5s var(--appleEase); animation: replayFadeIn .5s var(--appleEase);
} }
transition: transform .2s var(--appleEase);
transition-delay: .1s;
&:hover {
transform: scale(1.1);
transition-delay: 0s;
}
} }
@keyframes replayFadeIn { @keyframes replayFadeIn {
0% { 0% {
//border-radius: 100%;
transform: translateY(10px) scale(0.9); transform: translateY(10px) scale(0.9);
opacity: 0; opacity: 0;
} }
100% { 100% {
//border-radius: var(--mediaItemRadius);
transform: scale(1); transform: scale(1);
opacity: 1; opacity: 1;
} }