From ea4340f080e447100776b11687a5178d0f7aa1e3 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 15 Feb 2024 10:36:29 +0100 Subject: [PATCH] feat(ui): :lipstick: replace `outline` with custom style for `cta` --- src/stylesheets/base.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/stylesheets/base.css b/src/stylesheets/base.css index 69785d0..f79cec0 100644 --- a/src/stylesheets/base.css +++ b/src/stylesheets/base.css @@ -89,9 +89,11 @@ h1 { border: var(--_border-size) solid var(--_accent-color); transition: all var(--_transition-delay) ease; display: inline-block; + outline: none; } -.cta:hover { +.cta:hover, +.cta:focus-visible { background-color: var(--lime-1); color: var(--_accent-color); box-shadow: 0 0 0 0 var(--_accent-color);