signal-desktop/stylesheets/components/ProgressCircle.scss
automated-signal ec0d64de6e
Pause, cancel & resume backup media download
Co-authored-by: trevor-signal <131492920+trevor-signal@users.noreply.github.com>
2024-09-16 14:44:56 -07:00

25 lines
493 B
SCSS

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
.ProgressCircle {
fill: none;
transform: rotate(-90deg);
.ProgressCircle__fill,
.ProgressCircle__background {
fill: none;
}
.ProgressCircle__background {
stroke: $color-gray-20;
@include dark-theme() {
stroke: $color-gray-60;
}
}
.ProgressCircle__fill {
stroke: $color-ultramarine;
stroke-linecap: round;
transition: stroke-dashoffset 500ms ease-out;
}
}