1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 20:54:19 +00:00

adoucissement des couleurs en mode nocturne

This commit is contained in:
Maxime Moraine 2020-05-26 19:30:08 +02:00
parent 8b97bc109b
commit 2960c09d3f
4 changed files with 12 additions and 3 deletions

View file

@ -1,5 +1,5 @@
<template>
<v-btn color="primary" class="mb-4" depressed link to="/mes-objets-magiques/">Mes objets magiques<v-chip v-show="$store.state.myMagicItems.magicItems.length > 0" class="ml-2" color="#fff" small label>{{ $store.state.myMagicItems.magicItems.length }}</v-chip></v-btn>
<v-btn color="primary" class="mb-4" depressed link to="/mes-objets-magiques/">Mes objets magiques<v-chip v-show="$store.state.myMagicItems.magicItems.length > 0" class="ml-2" color="#fff" small label text-color="#222">{{ $store.state.myMagicItems.magicItems.length }}</v-chip></v-btn>
</template>
<script>

View file

@ -1,5 +1,5 @@
<template>
<v-btn color="primary" class="mb-4" depressed link to="/mon-bestiaire/">Mon bestiaire<v-chip v-show="$store.state.myMonsters.monsters.length > 0" class="ml-2" color="#fff" small label>{{ $store.state.myMonsters.monsters.length }}</v-chip></v-btn>
<v-btn color="primary" class="mb-4" depressed link to="/mon-bestiaire/">Mon bestiaire<v-chip v-show="$store.state.myMonsters.monsters.length > 0" class="ml-2" color="#fff" small label text-color="#222">{{ $store.state.myMonsters.monsters.length }}</v-chip></v-btn>
</template>
<script>

View file

@ -1,5 +1,5 @@
<template>
<v-btn color="primary" class="mb-4" depressed link to="/mon-grimoire/">Mon grimoire<v-chip v-show="$store.state.mySpells.spells.length > 0" class="ml-2" color="#fff" small label>{{ $store.state.mySpells.spells.length }}</v-chip></v-btn>
<v-btn color="primary" class="mb-4" depressed link to="/mon-grimoire/">Mon grimoire<v-chip v-show="$store.state.mySpells.spells.length > 0" class="ml-2" color="#fff" small label text-color="#222">{{ $store.state.mySpells.spells.length }}</v-chip></v-btn>
</template>
<script>

View file

@ -48,3 +48,12 @@
ul {
margin-bottom: 16px;
}
.theme--dark.v-application {
color: #ddd;
background-color: #333;
h1, h2, h3, h4, h5, h6, table thead, strong {
color: #eee;
}
}