From 0e52338b1ff42f0d098f6820ce297c5bf37a9cb8 Mon Sep 17 00:00:00 2001 From: Korbs Date: Sun, 23 Jun 2024 22:31:52 -0400 Subject: [PATCH] Hide default outline --- src/styles/index.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/styles/index.scss b/src/styles/index.scss index 857698a..7e2b19c 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -9,6 +9,7 @@ body { font-family: 'Roboto Flex Variable', sans-serif; margin: auto; max-width: 1200px; + padding: 0px 24px; // Elements a { @@ -21,7 +22,12 @@ body { } } - * {cursor: var(--default-cursor)} + * { + cursor: var(--default-cursor); + &:focus { + outline: none; + } + } a, button, a > * {cursor: var(--pointer-cursor) !important} }