diff --git a/src/app/AppSidebar.css b/src/app/AppSidebar.css index 47418e6..ea37e5d 100644 --- a/src/app/AppSidebar.css +++ b/src/app/AppSidebar.css @@ -200,31 +200,6 @@ .sidebar__authBtn { flex: 1 1 0; - padding: 0.45rem 0.55rem; - border-radius: 12px; - border: 1px solid var(--sidebar-border); - background: transparent; - color: var(--sidebar-text); - font-size: 12px; - font-weight: 600; - cursor: pointer; - transition: - background 160ms ease, - border-color 160ms ease; -} - -.sidebar__authBtn:hover { - background: rgba(255, 255, 255, 0.06); - border-color: var(--sidebar-primary-dim); -} - -.sidebar__authBtn:disabled { - opacity: 0.55; - cursor: not-allowed; -} - -.sidebar__authBtn--ghost { - opacity: 0.9; } .sidebar__authSelect { diff --git a/src/app/AppSidebar.tsx b/src/app/AppSidebar.tsx index 8914a59..a57ebb3 100644 --- a/src/app/AppSidebar.tsx +++ b/src/app/AppSidebar.tsx @@ -22,6 +22,7 @@ import { X, } from "lucide-react"; import { AuthSidebarPanel } from "@/app/auth/AuthContext"; +import { Button } from "@/components/primitives/button"; const navClass = ({ isActive }: { isActive: boolean }) => clsx("sidebar__link", isActive && "sidebar__link--active"); @@ -84,8 +85,10 @@ const AppSidebar: React.FC = ({ children }) => {