1 // be careful to udpate SVG if you want to update this value
2 $stroke-width: 3px !default;
4 // this component is used for VPN
5 // and for the moment on Angular/React sidebar
8 stroke: var(--background-strong);
9 stroke-width: $stroke-width;
13 stroke: var(--background-weak);
18 stroke: var(--signal-success);
19 stroke-width: $stroke-width;
21 animation: anime-circle-chart-fill 2s reverse;
22 transform: rotate(-90deg);
23 transform-origin: center;
27 fill: var(--text-norm);
31 color: var(--text-weak);
34 .circle-bar--medium &-circle {
35 stroke: var(--signal-warning);
38 .circle-bar--full &-circle {
39 stroke: var(--signal-danger);
43 @keyframes anime-circle-chart-fill {
45 stroke-dasharray: 0 100;