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
+38
View File
@@ -0,0 +1,38 @@
@layer vuetify-components {
.v-main {
flex: 1 0 auto;
max-width: 100%;
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
padding-left: var(--v-layout-left);
padding-right: var(--v-layout-right);
padding-top: var(--v-layout-top);
padding-bottom: var(--v-layout-bottom);
}
@media (prefers-reduced-motion: reduce) {
.v-main {
transition: none;
}
}
.v-main__scroller {
max-width: 100%;
position: relative;
}
.v-main--scrollable {
display: flex;
}
.v-main--scrollable {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.v-main--scrollable > .v-main__scroller {
flex: 1 1 auto;
overflow-y: auto;
--v-layout-left: 0px;
--v-layout-right: 0px;
--v-layout-top: 0px;
--v-layout-bottom: 0px;
}
}