From ebaa4529a4c51c11471e270db214f8dfebb0192c Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Thu, 3 Feb 2022 11:56:21 -0800 Subject: [PATCH] Shrink the size of pips a little Signed-off-by: James Ketrenos --- client/src/Board.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/Board.css b/client/src/Board.css index cd7dd2c..936c36f 100644 --- a/client/src/Board.css +++ b/client/src/Board.css @@ -24,11 +24,11 @@ } .Pip { - width: 50px; - height: 50px; + width: 2em; + height: 2em; position: absolute; background-size: 600% auto; /* pip-numbers is a 6x6 grid of pip images */ - transform: translate(-25px, -25px); + transform: translate(-50%, -50%); } .Border {