From 376484c3b299cb909e69e7df22f3cbe957b70e82 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Mon, 13 May 2024 17:12:34 +0200 Subject: [PATCH] Add a darkened card when stack is empty Closes #11 --- components/CardsGrouped.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/components/CardsGrouped.vue b/components/CardsGrouped.vue index c4eb3d3..07f0396 100644 --- a/components/CardsGrouped.vue +++ b/components/CardsGrouped.vue @@ -19,6 +19,9 @@ const props = withDefaults(defineProps(), { + @@ -38,4 +41,9 @@ const props = withDefaults(defineProps(), { flex-direction: row-reverse; justify-content: center; } + +.card_image.empty { + filter: brightness(0.5); + max-height: 250px; +} \ No newline at end of file