Skip to content

Commit

Permalink
fix: wierd color thing that was in navbar but breaks whenever we use …
Browse files Browse the repository at this point in the history
…the css variable colors? (fix later i suppose)
  • Loading branch information
Sampiiiii committed Apr 13, 2024
1 parent 078f1eb commit ec83946
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/forge/src/components/navbar/appSwitcher/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
} from "@ui/components/ui/navigation-menu";
import { PenLine, Printer, Share2 } from "lucide-react";
import useCurrentApp from "@/hooks/useCurrentApp.ts";
import { cn } from "@/lib/utils.ts";

export default function AppSwitcher() {
const currentapp = useCurrentApp();
Expand All @@ -27,7 +28,9 @@ export default function AppSwitcher() {
<li className="row-span-3">
<NavigationMenuLink asChild>
<Link
className="flex h-full w-full select-none flex-col justify-end rounded-md bg-gradient-to-b from-primary/50 to-background p-6 no-underline outline-none focus:shadow-md"
className={cn(
"flex h-full w-full select-none flex-col justify-end rounded-md p-6 no-underline outline-none focus:shadow-md bg-gradient-to-b from-red-950 to-black",
)}
to="/"
>
<div className="mb-2 mt-4 text-lg font-medium">iForge</div>
Expand Down

0 comments on commit ec83946

Please sign in to comment.