diff --git a/src/components/application/app-navigation/base-components/nav-account-card.tsx b/src/components/application/app-navigation/base-components/nav-account-card.tsx index cbfb5a7..340ffc9 100644 --- a/src/components/application/app-navigation/base-components/nav-account-card.tsx +++ b/src/components/application/app-navigation/base-components/nav-account-card.tsx @@ -145,7 +145,7 @@ export const NavAccountCard = ({ } return ( -
+
{children} @@ -62,7 +62,9 @@ export const NavItemBase = ({ current, type, badge, href, icon: Icon, children, if (type === "collapsible") { return ( - + {iconElement} {labelElement} @@ -80,7 +82,7 @@ export const NavItemBase = ({ current, type, badge, href, icon: Icon, children, href={href!} target={isExternal ? "_blank" : "_self"} rel="noopener noreferrer" - className={cx("py-2 pr-3 pl-10", styles.root, current && styles.rootSelected)} + className={cx("py-2 pr-3 pl-10 bg-sidebar", !current && "hover:bg-sidebar-hover", styles.root, current && styles.rootSelected)} onClick={onClick} aria-current={current ? "page" : undefined} > @@ -96,7 +98,7 @@ export const NavItemBase = ({ current, type, badge, href, icon: Icon, children, href={href!} target={isExternal ? "_blank" : "_self"} rel="noopener noreferrer" - className={cx("px-3 py-2", styles.root, current && styles.rootSelected)} + className={cx("px-3 py-2 bg-sidebar", !current && "hover:bg-sidebar-hover", styles.root, current && styles.rootSelected)} onClick={onClick} aria-current={current ? "page" : undefined} > diff --git a/src/components/base/avatar/avatar-label-group.tsx b/src/components/base/avatar/avatar-label-group.tsx index f9792e7..954a862 100644 --- a/src/components/base/avatar/avatar-label-group.tsx +++ b/src/components/base/avatar/avatar-label-group.tsx @@ -20,8 +20,8 @@ export const AvatarLabelGroup = ({ title, subtitle, className, ...props }: Avata
-

{title}

-

{subtitle}

+

{title}

+

{subtitle}

); diff --git a/src/components/layout/sidebar.tsx b/src/components/layout/sidebar.tsx index 41706ed..f711fc3 100644 --- a/src/components/layout/sidebar.tsx +++ b/src/components/layout/sidebar.tsx @@ -150,7 +150,7 @@ export const Sidebar = ({ activeUrl = "/" }: SidebarProps) => {