Skip to content

Commit 11751de

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 96cb1af commit 11751de

File tree

1 file changed

+2
-2
lines changed
  • packages/react-devtools-shared/src/devtools/views/Components

1 file changed

+2
-2
lines changed

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)