add a little fade in to proplates :3

This commit is contained in:
ItsVipra 2023-05-28 12:00:12 +02:00
parent 9e959a8ab8
commit c0f00aa45d

View file

@ -5,6 +5,7 @@
margin-left: 0.5rem;
display: inline-flex;
text-transform: lowercase;
animation: proplate-fadein .15s linear;
}
/* dark theme */
@ -68,3 +69,18 @@
rgba(255, 0, 0, 1) 100%
);
}
@keyframes proplate-fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@media (prefers-reduced-motion) {
.protoots-proplate {
animation: none;
}
}