From f8d88645a30eac2ecc7319f719603b616670a0b6 Mon Sep 17 00:00:00 2001 From: ElementalAlchemist Date: Mon, 25 Oct 2021 00:27:33 -0500 Subject: [PATCH] Fix some style issues affecting Firefox (primarily related to the default font and font size) --- thrimbletrimmer/styles/thrimbletrimmer.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/thrimbletrimmer/styles/thrimbletrimmer.css b/thrimbletrimmer/styles/thrimbletrimmer.css index 719e747..da69c3e 100644 --- a/thrimbletrimmer/styles/thrimbletrimmer.css +++ b/thrimbletrimmer/styles/thrimbletrimmer.css @@ -1,3 +1,10 @@ +body { + /* Firefox has a weird default font, which is a different size from the one in Chrome + * and makes some renderings bad. + */ + font-family: "Arial", sans-serif; +} + a, .click { cursor: pointer; @@ -165,7 +172,7 @@ a, #video-info { margin: 5px 0; display: grid; - grid-template-columns: 175px 1fr; + grid-template-columns: 200px 1fr; grid-template-rows: 1fr 1.25em 3em 1.25em; gap: 2px; }