From bf5a67496d931c94d3ac530c382b569c3ebcf07a Mon Sep 17 00:00:00 2001
From: Conrad Zelck <git@simpel.cc>
Date: Fri, 6 Oct 2023 19:02:38 +0200
Subject: [PATCH] style: set textarea#input:focus outline to 2px

This is default. As the textarea had to get always an outline with 1px
to look like the rest it must be set thicker back to default focus
outline.

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

diff --git a/style.css b/style.css
index b45806a..31d6c81 100644
--- a/style.css
+++ b/style.css
@@ -248,8 +248,7 @@ p.label {
 }
 
 textarea#input:focus {
-  outline: 3px solid white;
-  outline-offset: 2px;
+  outline: 2px solid white;
 }
 
 button, input {
-- 
GitLab