FE Auth vendor changes (#270)

This commit is contained in:
Kerem Yilmaz
2024-05-07 11:31:05 -07:00
committed by GitHub
parent 0862232db4
commit 5ce37dfaaf
16 changed files with 99 additions and 32 deletions

View File

@@ -8,12 +8,12 @@ import { NavLink } from "react-router-dom";
function SideNav() {
return (
<nav className="flex flex-col gap-4">
<nav>
<NavLink
to="create"
className={({ isActive }) => {
return cn(
"flex items-center px-6 py-2 hover:bg-primary-foreground rounded-2xl",
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
{
"bg-primary-foreground": isActive,
},
@@ -27,7 +27,7 @@ function SideNav() {
to="tasks"
className={({ isActive }) => {
return cn(
"flex items-center px-6 py-2 hover:bg-primary-foreground rounded-2xl",
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
{
"bg-primary-foreground": isActive,
},
@@ -41,7 +41,7 @@ function SideNav() {
to="settings"
className={({ isActive }) => {
return cn(
"flex items-center px-6 py-2 hover:bg-primary-foreground rounded-2xl",
"flex items-center px-6 py-4 hover:bg-primary-foreground rounded-2xl",
{
"bg-primary-foreground": isActive,
},