InvokeAI/frontend/src/features/system/ProgressBar.scss
2022-10-31 23:58:08 +11:00

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%
);
}
}
}