From 76814efb1857baee0127d42f5a3ea00825df49b8 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Fri, 24 May 2024 20:13:16 +0200 Subject: [PATCH] fix : background of market and playlist --- components/GameBoard.vue | 3 ++- components/MarketCards.vue | 4 +++- components/PlayerSlot.vue | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/components/GameBoard.vue b/components/GameBoard.vue index 86d22fa..ee50b99 100644 --- a/components/GameBoard.vue +++ b/components/GameBoard.vue @@ -132,7 +132,8 @@ function showWinnerScreen() { border-radius: 10px; filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60)); margin: 10px; - backdrop-filter: hue-rotate(73deg) blur(10px) contrast(90%) brightness(165%); + backdrop-filter: blur(10px) contrast(90%) brightness(165%); + background: rgba(26, 70, 91, 0.7); } diff --git a/components/MarketCards.vue b/components/MarketCards.vue index e846351..034468b 100644 --- a/components/MarketCards.vue +++ b/components/MarketCards.vue @@ -68,7 +68,9 @@ const buyableFiregem = computed(() => goStore?.current_game?.gem_stack.at(-1)) padding-bottom: 10px; border-radius: 10px; filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60)); - backdrop-filter: hue-rotate(625deg) blur(5px) brightness(80%); + backdrop-filter: blur(5px) brightness(80%); + background: rgba(155, 62, 62, 0.46); + } .separator { diff --git a/components/PlayerSlot.vue b/components/PlayerSlot.vue index def550d..7bdb4b9 100644 --- a/components/PlayerSlot.vue +++ b/components/PlayerSlot.vue @@ -489,7 +489,7 @@ function check_for_guard(player: Player) { border: 5px solid black; border-radius: 10px; filter: drop-shadow(2.5px 7.5px 1px rgba(0, 0, 0, .60)); - backdrop-filter: blur(5px) brightness(80%) hue-rotate(0deg) grayscale(80%); + backdrop-filter: blur(5px) brightness(80%) grayscale(80%); } #player_stats {