From 24bcc109cf71f12d816d6b8afc46444d6be09719 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Tue, 2 Jul 2024 21:21:08 +0200 Subject: Components: SideBar: Change button color on hover --- src/components/Sidebar/SidebarButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Sidebar/SidebarButton.tsx b/src/components/Sidebar/SidebarButton.tsx index c29dfe4..0af2c2c 100644 --- a/src/components/Sidebar/SidebarButton.tsx +++ b/src/components/Sidebar/SidebarButton.tsx @@ -1,11 +1,11 @@ export default function SidebarButton(props: any) { return (
+ className="flex items-center w-full p-3 leading-tight transition-all rounded-lg outline-none text-start hover:bg-blue-500">
{props.name} -
+ ) } -- cgit 1.4.1