From 3d0a15d5b0b2f743d9f860c40fe9c689f720448e Mon Sep 17 00:00:00 2001 From: Seth Forsgren Date: Thu, 8 Dec 2022 16:58:49 -0800 Subject: [PATCH] bug fix --- components/Info.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Info.tsx b/components/Info.tsx index 3ce7071..8c31355 100644 --- a/components/Info.tsx +++ b/components/Info.tsx @@ -20,7 +20,7 @@ export default function Info() { var classNameCondition = "" if (open) { - classNameCondition = "fixed z-20 top-44 right-4 md:top-48 md:right-8 top-48 right-8 bg-sky-400 w-14 h-14 rounded-full drop-shadow-lg flex justify-center items-center text-white text-2xl hover:bg-sky-500 hover:drop-shadow-2xl" + classNameCondition = "fixed z-20 top-44 right-4 md:top-48 md:right-8 bg-sky-400 w-14 h-14 rounded-full drop-shadow-lg flex justify-center items-center text-white text-2xl hover:bg-sky-500 hover:drop-shadow-2xl" } else { classNameCondition = "fixed z-20 top-44 right-4 md:top-48 md:right-8 bg-slate-100 w-14 h-14 rounded-full drop-shadow-lg flex justify-center items-center text-sky-900 text-2xl hover:text-white hover:bg-sky-600 hover:drop-shadow-2xl" }