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.
20 lines
344 B
20 lines
344 B
@import '../../variables.scss';
|
|
|
|
.donutchartTrack{
|
|
fill: transparent;
|
|
stroke: $lightgrey;
|
|
stroke-width: 26;
|
|
}
|
|
.donutchartIndicator {
|
|
fill: transparent;
|
|
stroke: $main;
|
|
stroke-width: 26;
|
|
stroke-dasharray: 0 10000;
|
|
transition: stroke-dasharray .3s ease;
|
|
}
|
|
|
|
.donutchart {
|
|
margin: 0 auto;
|
|
border-radius: 50%;
|
|
display: block;
|
|
}
|
|
|