From 6150eef6ea1f4efa7acf58875cbd558426d83c84 Mon Sep 17 00:00:00 2001 From: Tyler Woods Date: Tue, 21 May 2024 21:05:23 -0500 Subject: [PATCH] don't need this px-2 anymore, lingering from before moving py-1 --- components/ScriptBrowser.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ScriptBrowser.tsx b/components/ScriptBrowser.tsx index a09bfd7..5f026d3 100644 --- a/components/ScriptBrowser.tsx +++ b/components/ScriptBrowser.tsx @@ -115,7 +115,7 @@ const ScriptBrowser = ({ items }: { items: Category[] }) => { pathname: "/scripts", query: { id: script.title }, }} - className={`py-1 px-2 hover:rounded-lg hover:bg-neutral-50 hover:dark:bg-neutral-800 hover:dark:bg-neutral-700 flex cursor-pointer items-center justify-between gap-1 text-muted-foreground ${ + className={`py-1 hover:rounded-lg hover:bg-neutral-50 hover:dark:bg-neutral-800 hover:dark:bg-neutral-700 flex cursor-pointer items-center justify-between gap-1 text-muted-foreground ${ selectedScript === script.title ? "rounded-lg font-semibold dark:text-white bg-neutral-100 dark:bg-neutral-900" : ""