mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-30 15:44:37 -05:00
* style(frontend): 💄 add darktheme custom * add dummy users in dev mode * feat(frontend): ✨ add group permissions editor UI * feat(backend): ✨ add group permissions setters * test(backend): ✅ tests for basic permission get/set (WIP) Needs more testing * remove old test * chore(backend): copy template.env on setup * feat(frontend): ✨ enable send invitation via email * feat(backend): ✨ enable send invitation via email * feat: ✨ add app config checker for site-settings * refactor(frontend): ♻️ consolidate bool checks 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: 700px !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;
|
|
}
|