You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/app/styles/components/progress-circle.scss

18 lines
248 B

.progress-circle {
display: flex;
&__circle {
stroke: hsla(var(--primary-text-color_hsl), 0.2);
}
&__progress {
stroke: var(--brand-color);
}
&--over {
.progress-circle__progress {
stroke: $warning-red;
}
}
}