Files
htwkalender-pwa/frontend/public/primevue-sass-theme/theme-base/components/input/_knob.scss
2024-06-10 10:50:27 +02:00

21 lines
296 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;
}
}