From 0bad85b090dd7c2c80a0b4acddb5298c4e17bfa2 Mon Sep 17 00:00:00 2001 From: FabienBounoir Date: Wed, 17 Apr 2024 19:13:21 +0200 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=92=A1=20Remove=20mechante=20?= =?UTF-8?q?box=20shadow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/lib/components/Card.svelte | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/lib/components/Card.svelte b/src/lib/components/Card.svelte index d750787..ba98a17 100644 --- a/src/lib/components/Card.svelte +++ b/src/lib/components/Card.svelte @@ -15,9 +15,9 @@
{#if data.duration && config.displayDuration} {#if data.isLive} -
EN DIRECT
+
EN DIRECT
{:else} -
{data.duration}
+
{data.duration}
{/if} {/if} @@ -64,11 +64,6 @@ max-width: min(100%, 400px); background-color: white; border-radius: 1rem; - box-shadow: - 0 0 #0000, - 0 0 #0000, - 0 1px 3px 0 rgba(0, 0, 0, 0.1), - 0 1px 2px -1px rgba(0, 0, 0, 0.1); padding: 1rem; min-width: min(100%, 350px); @@ -201,8 +196,8 @@ background-color: rgba(0, 0, 0, 0.6); } - .live{ - background-color: rgba(204,0,0,0.85) !important; + .live { + background-color: rgba(204, 0, 0, 0.85) !important; font-weight: 600; } }