From a4c64add51b411c92bcd61039e243385151fccb5 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 6 Jun 2020 12:49:24 -0700 Subject: [PATCH 1/1] Scribe: Increase font size for game elements It was just too hard to see things on my phone. I hadn't used this larger font size earlier because it caused the squares to stretch tall (no longer as squares) and squashing flat the mini grids without characters in them. But here I found I can avoid that problem by setting line height to 0. --- scribe/scribe.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scribe/scribe.css b/scribe/scribe.css index fd634f0..116bcbc 100644 --- a/scribe/scribe.css +++ b/scribe/scribe.css @@ -57,7 +57,8 @@ display: flex; justify-content: center; align-items: center; - font-size: 5vmin; + font-size: 8vmin; + line-height: 0; font-weight: bold; border-bottom: 1px solid #999; border-right: 1px solid #999; -- 2.43.0