We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3019c4 commit ee4461cCopy full SHA for ee4461c
js_modules/dagster-ui/packages/ui-core/src/ui/IndeterminateLoadingBar.tsx
@@ -16,19 +16,23 @@ export const IndeterminateLoadingBar = styled.div<{$loading?: boolean}>`
16
content: '';
17
display: block;
18
height: 100%;
19
- width: 0%;
+ width: 100%;
20
background: ${Colors.accentBlue()};
21
+ transform-origin: left center;
22
+ will-change: transform;
23
animation: load 2s infinite;
24
+ contain: layout style size;
25
+ isolation: isolate;
26
27
@keyframes load {
28
0% {
29
+ transform: scaleX(0);
30
}
31
50% {
- width: 50%;
32
+ transform: scaleX(0.5);
33
34
100% {
- width: 100%;
35
+ transform: scaleX(1);
36
37
38
0 commit comments