Skip to content

Commit

Permalink
🐛 Fixed one color
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Jan 17, 2024
1 parent 6686b6e commit 73c2094
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/webapp/src/components/homepage/components/main-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export function MainNav({
const [selectedItem, setSelectedItem] = useState<string>("quickstart");

const navItemClassName = (itemName: string) =>
`text-sm border-b font-medium w-full text-left px-4 py-2 hover:bg-gray-900 cursor-pointer ${
selectedItem === itemName ? "bg-gray-900" : "text-muted-foreground"
`text-sm border-b font-medium w-full text-left px-4 py-2 hover:bg-zinc-900 cursor-pointer ${
selectedItem === itemName ? "bg-zinc-800" : "text-muted-foreground"
} transition-colors`;

function click(name: string) {
Expand Down
2 changes: 1 addition & 1 deletion apps/webapp/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

--border: 0 0% 40%;
--input: 0 0% 40%;
--ring: 0 10% 100%;
--ring: 0 0% 100%;
}
}

Expand Down

0 comments on commit 73c2094

Please sign in to comment.