From cedf3c201fbf51c05e115cb6d0e73eb5031be23b Mon Sep 17 00:00:00 2001 From: SauceyRed Date: Thu, 29 May 2025 04:52:53 +0200 Subject: [PATCH] feat: set focus outline of all items to light gray --- app.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app.vue b/app.vue index b20c5ab..47873f0 100644 --- a/app.vue +++ b/app.vue @@ -18,6 +18,10 @@ body { margin: 0; } +*:focus-visible { + outline: 1px solid rgb(150, 150, 150); +} + a { color: aquamarine; }