From ab975d499e07909f04d8709e641349faded3503a Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sun, 19 May 2024 21:49:58 +0200 Subject: [PATCH] Fix : normalize borders --- components/GameBoard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/GameBoard.vue b/components/GameBoard.vue index ab7f0bb..931d7d6 100644 --- a/components/GameBoard.vue +++ b/components/GameBoard.vue @@ -105,7 +105,7 @@ function showWinnerScreen() { #market { grid-area: market; background-image: url("/images/bg-sand.png"); - border-bottom: 5px solid black; + border-bottom: 3px solid black; ; } @@ -115,7 +115,7 @@ function showWinnerScreen() { #player_list { grid-area: player_list; - border-left: 5px solid black; + border-left: 3px solid black; height: 100%; background-image: url("/images/bg-darkgrass.png"); }