From 6fe78927c6e47e58ca0d435e399248b57bdd4759 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Mon, 25 Sep 2023 05:29:40 +0800 Subject: [PATCH] Css tweaks --- src/TicTacToe/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/TicTacToe/style.css b/src/TicTacToe/style.css index 12841da..76fd118 100644 --- a/src/TicTacToe/style.css +++ b/src/TicTacToe/style.css @@ -1,12 +1,13 @@ .TicTacToe { background-color: #3B3E49; color: #B9B8D6; + border-radius: 20px; } .TicTacToeGrid { display: grid; - width: 50vh; - height: 50vh; + min-width: 50vw; + min-height: 50vw; grid-template-columns: auto auto auto; } @@ -29,6 +30,7 @@ left: 50%; top: 50%; transform: translate(-50%, -50%); + font-size: 10vw; } .CellRed {