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