mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2026-01-17 12:02:26 +01:00
20 lines
317 B
SCSS
20 lines
317 B
SCSS
// core
|
|
.p-knob-range {
|
|
fill: none;
|
|
transition: stroke 0.1s ease-in;
|
|
}
|
|
.p-knob-value {
|
|
animation-name: dash-frame;
|
|
animation-fill-mode: forwards;
|
|
fill: none;
|
|
}
|
|
.p-knob-text {
|
|
font-size: 1.3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
@keyframes dash-frame {
|
|
100% {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
} |