Add stale refresh indicator
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m1s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m1s
This commit is contained in:
@@ -102,6 +102,26 @@
|
||||
}
|
||||
}
|
||||
|
||||
.refresh-progress {
|
||||
animation: refresh-progress-slide 1.05s ease-in-out infinite;
|
||||
box-shadow: 0 0 12px color-mix(in srgb, var(--color-brand-primary) 38%, transparent);
|
||||
}
|
||||
|
||||
.refreshing-content {
|
||||
opacity: 0.72;
|
||||
transition: opacity 180ms ease;
|
||||
}
|
||||
|
||||
@keyframes refresh-progress-slide {
|
||||
0% {
|
||||
transform: translateX(-120%);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(320%);
|
||||
}
|
||||
}
|
||||
|
||||
.app-shell {
|
||||
background:
|
||||
linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0) 24rem),
|
||||
|
||||
Reference in New Issue
Block a user