From 1abe69b379e4e92c95d2fbccff22cb8e8e93a758 Mon Sep 17 00:00:00 2001 From: Eduardo Liron Date: Wed, 16 Aug 2023 13:15:11 -0300 Subject: [PATCH] open search drawer on focus --- src/components/HeaderBar.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/HeaderBar.tsx b/src/components/HeaderBar.tsx index 01d13e5..7331d57 100644 --- a/src/components/HeaderBar.tsx +++ b/src/components/HeaderBar.tsx @@ -96,6 +96,9 @@ export default function HeaderBar(props: Props) { "&:hover": { backgroundColor: alpha(theme.palette.common.white, 0.25), }, + "&:focus": { + backgroundColor: alpha(theme.palette.common.white, 0.25), + }, marginLeft: "auto", width: "auto", }));