From 6af67672fc5f05338a06b6bab235af9ad733be9b Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Sat, 1 Oct 2022 14:35:36 -0500 Subject: [PATCH] Navitem hover --- components/Page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/Page.tsx b/components/Page.tsx index 0597465..0f2a669 100644 --- a/components/Page.tsx +++ b/components/Page.tsx @@ -1,6 +1,7 @@ import { JSX } from "preact"; -const NAV_ITEM_CLASSES = "flex justify-center items-center px-4 py-2"; +const NAV_ITEM_CLASSES = + "flex justify-center items-center px-4 py-2 hover:(bg-gray-700)"; const HEADER_CLASSES = "bg-gray-200 dark:bg-gray-800";