From d3913a0b97ddc5515b6c80722323ab774ce96f00 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife Date: Mon, 12 Apr 2021 09:47:25 +0100 Subject: [PATCH] styling --- src/code.js | 4 ++-- src/style.css | 11 +++++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/code.js b/src/code.js index 7005ccd..5e02f3f 100644 --- a/src/code.js +++ b/src/code.js @@ -121,7 +121,7 @@ function win() { if (board[1][1][0] == board[2][2][0]) { - console.log("tr bl: " + board[0][0][0]); + console.log("tl br: " + board[0][0][0]); return board[0][0][0]; } @@ -136,7 +136,7 @@ function win() { if (board[1][1][0] == board[2][0][0]) { - console.log("tl br: " + board[0][2][0]); + console.log("tr bl: " + board[0][2][0]); return board[0][2][0]; } diff --git a/src/style.css b/src/style.css index b595a85..b76a1d7 100644 --- a/src/style.css +++ b/src/style.css @@ -1,17 +1,20 @@ #board tr { - height: 50px; + height: 100px; } #board tr th { - width: 50px; + width: 100px; } button { - height: 40px; - width: 40px; + height: 75px; + width: 75px; + + font-size: xx-large; + font-style: bold; } *