mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2026-01-18 15:55:06 +00:00
22 lines
446 B
CSS
22 lines
446 B
CSS
/*
|
|
* react-circular-progressbar styles
|
|
*
|
|
* All of the styles in this file are optional and configurable!
|
|
*/
|
|
|
|
.CircularProgressbar .CircularProgressbar-path {
|
|
stroke: #3c3;
|
|
stroke-linecap: round;
|
|
transition: stroke-dashoffset 0.5s ease 0s;
|
|
}
|
|
|
|
.CircularProgressbar .CircularProgressbar-trail {
|
|
stroke: #d6d6d6;
|
|
}
|
|
|
|
.CircularProgressbar .CircularProgressbar-text {
|
|
font-size: 20px;
|
|
dominant-baseline: middle;
|
|
text-anchor: middle;
|
|
}
|