This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
.nut-theme-dark {
.nut-circle-progress{
.nut-circle-progress__text {
color: $dark-color;
}
}
}
.nut-circle-progress {
position: relative;
&__hover {
stroke: $circleprogress-primary-color;
transition: stroke-dasharray 0.6s ease 0s, stroke 0.6s ease 0s;
}
&__path {
stroke: $circleprogress-path-color;
}
&__text {
position: absolute;
top: 50%;
left: 0;
box-sizing: border-box;
width: 100%;
font-size: $circleprogress-text-size;
color: $circleprogress-text-color;
text-align: center;
transform: translateY(-50%);
}
}