From 32699fcf9b5eeb50a8ab50c819e75ddd86a20372 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Mon, 29 Jun 2026 19:31:44 -0400 Subject: [PATCH] Reduce focus outline on input boxes --- style/tailwind.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style/tailwind.css b/style/tailwind.css index ba36b04..2ce13fa 100644 --- a/style/tailwind.css +++ b/style/tailwind.css @@ -21,4 +21,9 @@ @apply hover:text-base-content/70; @apply active:text-primary active:translate-y-[.5px] active:shadow-(--btn-shadow); } + + .input:focus-within { + outline-width: 1px; + outline-offset: 0px; + } }