routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
@@ -0,0 +1,25 @@
@layer vuetify-components {
.v-time-picker.v-picker {
min-width: 328px;
}
.v-time-picker .v-picker__body, .v-time-picker-controls__field-label,
.v-time-picker .v-field {
transition-duration: 0.25s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-property: transform, max-height, opacity, font-size;
}
@media (prefers-reduced-motion: reduce) {
.v-time-picker .v-picker__body, .v-time-picker-controls__field-label,
.v-time-picker .v-field {
transition: none;
}
}
.v-time-picker .v-picker__body {
transition-behavior: allow-discrete;
max-height: calc-size(max-content, size);
}
.v-time-picker--variant-input .v-picker__body {
transform: scale(0);
max-height: 0;
}
}