mon-entreprise/source/components/AnimatedTargetValue.css

28 lines
384 B
CSS
Raw Normal View History

.Rule-value {
font-size: 105%;
position: relative;
}
.evaporate {
display: none;
font-size: 80%;
/* text-shadow: 0 0 2px var(--colour); */
}
.evaporate-enter {
display: block;
position: absolute;
right: 0;
top: -20px;
opacity: 1;
animation: evaporate 1.3s ease-out;
}
@keyframes evaporate {
50% {
opacity: 1;
}
to {
transform: translateY(-15px);
opacity: 0;
}
}