From 344bd78b79816104fea3dd03a9676f5ac7476f01 Mon Sep 17 00:00:00 2001 From: Takeshi Kimata <117462761+kimatata@users.noreply.github.com> Date: Wed, 8 May 2024 21:57:24 +0900 Subject: [PATCH] Adjust Appearance of side bar --- frontend/src/app/[locale]/projects/[projectId]/Sidebar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/[locale]/projects/[projectId]/Sidebar.tsx b/frontend/src/app/[locale]/projects/[projectId]/Sidebar.tsx index 51c9164..b4b77e1 100644 --- a/frontend/src/app/[locale]/projects/[projectId]/Sidebar.tsx +++ b/frontend/src/app/[locale]/projects/[projectId]/Sidebar.tsx @@ -17,8 +17,8 @@ export default function Sidebar({ messages, locale }: Props) { const pathname = usePathname(); const [currentKey, setCurrentTab] = useState("home"); - const baseClass = "p-3 rounded-none"; - const selectedClass = `${baseClass} bg-neutral-200 dark:bg-neutral-700 border-l-3 border-neutral-800`; + const baseClass = "p-3"; + const selectedClass = `${baseClass} bg-neutral-200 dark:bg-neutral-700`; const handleTabClick = (key: string) => { if (key === "home") { @@ -64,7 +64,7 @@ export default function Sidebar({ messages, locale }: Props) { return (