mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
23 lines
472 B
SCSS
23 lines
472 B
SCSS
@use '../../../styles/Mixins/' as *;
|
|
|
|
.progress-bar {
|
|
background-color: var(--root-bg-color);
|
|
height: $progress-bar-thickness;
|
|
z-index: 99;
|
|
|
|
div {
|
|
background-color: var(--progress-bar-color);
|
|
transition: width 0.2s ease-in-out;
|
|
|
|
&[data-indeterminate] {
|
|
background-color: unset;
|
|
background-image: linear-gradient(
|
|
to right,
|
|
transparent 0%,
|
|
var(--progress-bar-color) 50%,
|
|
transparent 100%
|
|
);
|
|
}
|
|
}
|
|
}
|