open-vault/ui/app/styles/components/radial-progress.scss

13 lines
296 B
SCSS

.radial-progress {
transform: rotate(-90deg) translateX(-20%);
}
.radial-progress circle {
stroke: rgba($grey-light, 0.5);
transition: stroke-dashoffset $speed ease-in;
will-change: stroke-dashoffset;
stroke-linecap: round;
}
.radial-progress circle.progress-fill {
stroke: $green;
}