From aaea68ef1ef76e2449568443df846ea02c822da9 Mon Sep 17 00:00:00 2001 From: Carlos Galindo Date: Sat, 24 Jan 2026 00:18:06 +0100 Subject: [PATCH] Shorten number fields for chromium-based browsers --- res_gen/templates/generador.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/res_gen/templates/generador.html b/res_gen/templates/generador.html index ad8a304..600ccf1 100644 --- a/res_gen/templates/generador.html +++ b/res_gen/templates/generador.html @@ -47,6 +47,11 @@ span.songSelector { flex-wrap: nowrap; column-gap: 0.3em; } +@media screen and (-webkit-min-device-pixel-ratio:0) { + input[type="number"] { + max-width: 5em; + } +}