Skip to content
Snippets Groups Projects
Unverified Commit aebe8973 authored by Conrad Zelck's avatar Conrad Zelck
Browse files

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: default avatarConrad Zelck <git@simpel.cc>
parent 6e951a92
No related branches found
No related tags found
No related merge requests found
...@@ -78,6 +78,7 @@ label, input { ...@@ -78,6 +78,7 @@ label, input {
input { input {
font-size: medium; font-size: medium;
font-family: inherit;
height: 2.5em; height: 2.5em;
margin-top: 0.2em; margin-top: 0.2em;
padding: 5px 10px; padding: 5px 10px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment