From 0aa5dbd899683172adf8997af6f561b49e8671af Mon Sep 17 00:00:00 2001 From: Seoxi Ryouko <3-Seoxi@users.noreply.git.starbit.dev> Date: Thu, 27 Feb 2025 08:47:15 -0600 Subject: [PATCH] =?UTF-8?q?Added=20player=20/=20opponent=20color=20borders?= =?UTF-8?q?=20=F0=9F=91=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/style.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/web/src/style.scss b/web/src/style.scss index 400e4ed..8b9914a 100644 --- a/web/src/style.scss +++ b/web/src/style.scss @@ -3,7 +3,6 @@ $view-container-side-offset: 5%; $param-container-side-offset: 5%; $img-hand-height: 95%; -/*$img-pile-width: 95%;*/ $hand-height: 14%; *, *::before, *::after { @@ -156,6 +155,14 @@ aside { height: calc(($img-hand-height / 100%) * ($hand-height / 100%) * 100vh); } +.in-play-card[data-owned = true] { + border: 1px solid #0ff7; +} + +.in-play-card[data-owned = false] { + border: 1px solid #f007; +} + [data-tapped = true] { transform: translate(-50%, -50%) rotate(90deg); }