mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-02 10:13:35 -05:00
* feat(frontend): ✨ add debugger to creation page * styling Co-authored-by: Hayden <hay-kot@pm.me>
31 lines
561 B
CSS
31 lines
561 B
CSS
.layout-enter-active,
|
|
.layout-leave-active {
|
|
transition: opacity 0.2s;
|
|
}
|
|
.layout-enter,
|
|
.layout-leave-active {
|
|
opacity: 0;
|
|
}
|
|
|
|
.narrow-container {
|
|
max-width: 800px !important;
|
|
}
|
|
|
|
.theme--dark.v-application {
|
|
background-color: var(--v-background-base, #121212) !important;
|
|
}
|
|
|
|
.theme--dark.v-navigation-drawer {
|
|
background-color: var(--v-background-base, #121212) !important;
|
|
}
|
|
|
|
/* 1E1E1E */
|
|
|
|
.theme--dark.v-card {
|
|
background-color: #2b2b2b !important;
|
|
}
|
|
|
|
.theme--light.v-application {
|
|
background-color: var(--v-background-base, white) !important;
|
|
}
|