Improve hover highlight UI effects for cards in dark mode

In light mode a change in elevation changes the drop shadow, but this is 
all but invisible in dark mode, so I added a highlight to the cards when 
hovering to show that the card can be expanded with a click
This commit is contained in:
Stefan Zermatten
2022-03-03 17:21:59 +02:00
parent 92a588bfcc
commit 4b4e3a8928
9 changed files with 119 additions and 16 deletions

View File

@@ -43,11 +43,17 @@
</div>
</div>
</v-layout>
<card-highlight :active="hover" />
</v-card>
</template>
<script lang="js">
import CardHighlight from '/imports/ui/components/CardHighlight.vue';
export default {
components: {
CardHighlight,
},
inject: {
context: { default: {} }
},