From aebe89737935f2e5ae699aef0ad4451405ab133a Mon Sep 17 00:00:00 2001
From: Conrad Zelck <git@simpel.cc>
Date: Tue, 28 Sep 2021 01:13:54 +0200
Subject: [PATCH] fix: fit input width on safari

Safaris user agent uses default another font for inputs. So input width
became bigger than table width. Both had the same value "70ch" but
this is depending on font-familiy. So I set font-family inherit.

Signed-off-by: Conrad Zelck <git@simpel.cc>
---
 style.css | 1 +
 1 file changed, 1 insertion(+)

diff --git a/style.css b/style.css
index 4d7ddad..7ab7b86 100644
--- a/style.css
+++ b/style.css
@@ -78,6 +78,7 @@ label, input {
 
 input {
   font-size: medium;
+  font-family: inherit;
   height: 2.5em;
   margin-top: 0.2em;
   padding: 5px 10px;
-- 
GitLab