From 867c4cf0d75053325052d420434acb2251dc06a9 Mon Sep 17 00:00:00 2001
From: Freeplay <freeplay@duck.com>
Date: Wed, 31 May 2023 16:41:31 -0400
Subject: [PATCH] fix

---
 packages/client/src/style.scss | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/packages/client/src/style.scss b/packages/client/src/style.scss
index 1dec7d3b7..eefa610d0 100644
--- a/packages/client/src/style.scss
+++ b/packages/client/src/style.scss
@@ -229,6 +229,7 @@ hr {
 	box-sizing: border-box;
 	position: relative;
 	border-radius: 5px;
+	outline: none;
 
 	&::before {
 		content: "";
@@ -239,12 +240,13 @@ hr {
 		transition: background 0.2s;
 	}
 
-	&:hover:before {
-		// background: rgba(0, 0, 0, 0.05);
+	&:hover:before, &:focus::before, &.highlighted::before {
 		background: var(--buttonBg);
 	}
-
-	&.highlighted::before {
+	&:focus-visible::before {
+		outline: auto;
+	}
+	&.highlighted {
 		color: var(--accent);
 	}
 }