feat(web): remove delay from Skeleton (#27580)

Change-Id: I95a37f1af832c005a8f009d6f07df8ac6a6a6964
This commit is contained in:
Min Idzelis 2026-04-14 12:47:37 -04:00 committed by GitHub
parent e4e2f586b5
commit 5e81a5a054
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,17 +33,6 @@
:global(.dark) [data-skeleton] {
background-image: url('/dark_skeleton.png');
}
@keyframes delayedVisibility {
to {
visibility: visible;
}
}
[data-skeleton] {
visibility: hidden;
animation:
0s linear 0.1s forwards delayedVisibility,
pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.invisible [data-skeleton] {
visibility: hidden !important;
}