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 (