From 88f0eaeb87c9b920c8b35bd5b996a8f520e53175 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Sat, 7 Oct 2023 19:30:30 +0200 Subject: [PATCH] style: reduce select border radius to 3px They are a bit smaller then buttons so their border radius won't fit. Signed-off-by: Conrad Zelck <git@simpel.cc> --- style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/style.css b/style.css index 33bf5a9..42ba7be 100644 --- a/style.css +++ b/style.css @@ -223,10 +223,18 @@ input[type=checkbox]:focus { button, input, select { border: 2px solid white; +} + +button, input { -webkit-border-radius: 5px; border-radius: 5px; } +select { + -webkit-border-radius: 3px; + border-radius: 3px; +} + input[type="file"] { border: 0; } -- GitLab