Skip to content

Commit df3c157

Browse files
committed
Make the skeleton start at blank and fade into dimmest
It's good practice to start as invisible as possible so that if it finishes early, it's the least disruptive. It should also take less visible weight to avoid flashing.
1 parent 28428ee commit df3c157

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/react-devtools-shared/src/devtools/views/Components

packages/react-devtools-shared/src/devtools/views/Components/Skeleton.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
@keyframes pulse {
77
0%, 100% {
8-
background-color: var(--color-dim);
8+
background-color: none;
99
}
1010
50% {
11-
background-color: var(--color-dimmest)
11+
background-color: var(--color-dimmest);
1212
}
1313
}

0 commit comments

Comments
 (0)