Spaces:
Paused
Paused
File size: 378 Bytes
d530f14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | .hero-scraping-highlight::before {
animation: hero-scraping-highlight-before 1s linear infinite;
transition: none !important;
}
@keyframes hero-scraping-highlight-before {
0% {
border-color: var(--border-loud);
opacity: 1;
}
40% {
opacity: 0.25;
border-color: var(--heat-100);
}
80% {
border-color: var(--border-loud);
opacity: 1;
}
}
|