From b9506f48ac912a319cecfbc4b8d17d6972c30640 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 20 Jun 2024 18:30:53 -0700 Subject: [PATCH] chore: styles --- src/assets/styles/components/buttons.css | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/assets/styles/components/buttons.css b/src/assets/styles/components/buttons.css index 3c5ff5be..d9906232 100644 --- a/src/assets/styles/components/buttons.css +++ b/src/assets/styles/components/buttons.css @@ -1,9 +1,4 @@ button { - &:focus, - &:focus-within { - outline: 2px dashed var(--accent-color); - } - &:not(.theme-toggle) { border-radius: var(--rounded-full); padding: var(--sizing-sm) var(--sizing-lg); @@ -24,7 +19,9 @@ button { &:not(.theme-toggle, .active):hover, &:not(.theme-toggle, .active):active, - &:not(.theme-toggle, .active):focus { + &:not(.theme-toggle, .active):focus, + &:not(.theme-toggle, .active):focus-within { + outline: 2px dashed var(--accent-color); background-color: var(--accent-color-hover); border-color: var(--accent-color-hover); transition-timing-function: var(--transition-ease-in-out);