Iterated on card color scheme
This commit is contained in:
@@ -246,6 +246,6 @@ export default {
|
||||
}
|
||||
.character-sheet-fab {
|
||||
bottom: -24px;
|
||||
margin-right: -8px;
|
||||
right: 8px;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<v-slide-y-reverse-transition
|
||||
group
|
||||
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;"
|
||||
>
|
||||
<log-entry
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template lang="html">
|
||||
<div>
|
||||
<div class="card-raised-background">
|
||||
<v-container
|
||||
fluid
|
||||
grid-list-lg
|
||||
|
||||
@@ -8,7 +8,10 @@
|
||||
<v-toolbar-title slot="toolbar">
|
||||
Add Library Content
|
||||
</v-toolbar-title>
|
||||
<property-selector @select="type => $emit('input', type)" />
|
||||
<property-selector
|
||||
slot="unwrapped-content"
|
||||
@select="type => $emit('input', type)"
|
||||
/>
|
||||
</dialog-base>
|
||||
<div
|
||||
v-show="value"
|
||||
|
||||
@@ -1,10 +1,20 @@
|
||||
.theme--dark.v-sheet {
|
||||
.theme--dark.v-sheet,
|
||||
.theme--dark.v-expansion-panels .v-expansion-panel {
|
||||
background-color: #303030;
|
||||
}
|
||||
|
||||
.theme--dark .card-background {
|
||||
background: #000;
|
||||
}
|
||||
.card-background {
|
||||
|
||||
.theme--light .card-background {
|
||||
background: #f6f6f6;
|
||||
}
|
||||
|
||||
.theme--dark .card-raised-background {
|
||||
background: #1d1d1d;
|
||||
}
|
||||
|
||||
.theme--light .card-raised-background {
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user