Iterated on card color scheme

This commit is contained in:
Stefan Zermatten
2021-03-26 11:06:52 +02:00
parent 2c448d1748
commit 7d4356592a
5 changed files with 19 additions and 6 deletions

View File

@@ -246,6 +246,6 @@ export default {
} }
.character-sheet-fab { .character-sheet-fab {
bottom: -24px; bottom: -24px;
margin-right: -8px; right: 8px;
} }
</style> </style>

View File

@@ -6,7 +6,7 @@
<v-slide-y-reverse-transition <v-slide-y-reverse-transition
group group
hide-on-leave hide-on-leave
class="card-background flex layout column reverse align-end pa-3" class="card-raised-background flex layout column reverse align-end pa-3"
style="overflow: auto;" style="overflow: auto;"
> >
<log-entry <log-entry

View File

@@ -1,5 +1,5 @@
<template lang="html"> <template lang="html">
<div> <div class="card-raised-background">
<v-container <v-container
fluid fluid
grid-list-lg grid-list-lg

View File

@@ -8,7 +8,10 @@
<v-toolbar-title slot="toolbar"> <v-toolbar-title slot="toolbar">
Add Library Content Add Library Content
</v-toolbar-title> </v-toolbar-title>
<property-selector @select="type => $emit('input', type)" /> <property-selector
slot="unwrapped-content"
@select="type => $emit('input', type)"
/>
</dialog-base> </dialog-base>
<div <div
v-show="value" v-show="value"

View File

@@ -1,10 +1,20 @@
.theme--dark.v-sheet { .theme--dark.v-sheet,
.theme--dark.v-expansion-panels .v-expansion-panel {
background-color: #303030; background-color: #303030;
} }
.theme--dark .card-background { .theme--dark .card-background {
background: #000; background: #000;
} }
.card-background {
.theme--light .card-background {
background: #f6f6f6;
}
.theme--dark .card-raised-background {
background: #1d1d1d;
}
.theme--light .card-raised-background {
background: #fafafa; background: #fafafa;
} }