From 2f152ad22eec76bec775c2a56af54b85f78bc972 Mon Sep 17 00:00:00 2001 From: Sam McElligott Date: Sat, 8 Jan 2022 21:12:16 +0000 Subject: [PATCH] Fix out of place outline when elements are clicked on mobile devices --- src/index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.css b/src/index.css index 615da981..53c6a1a5 100644 --- a/src/index.css +++ b/src/index.css @@ -63,4 +63,8 @@ body, html, input, button { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-size: 1rem; +} + +*:focus { + outline: none; } \ No newline at end of file