From 9df3a89e9b85e121602776e351edc9d0fa9f37ff Mon Sep 17 00:00:00 2001 From: xHyroM Date: Tue, 6 Jun 2023 19:17:34 +0200 Subject: [PATCH] fix: add bg-dark-50 and fix color issues --- docs/config.ts | 5 +++-- src/components/widgets/Navbar.astro | 2 +- src/pages/projects.astro | 2 +- tailwind.config.cjs | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/config.ts b/docs/config.ts index 0fbaafa..f69608c 100644 --- a/docs/config.ts +++ b/docs/config.ts @@ -4,9 +4,10 @@ export interface Docs { export interface SidebarItem { text: string; - items: SidebarItem[] & { + items: { + text: string; link: string; - }[] + }[]; } export const docs: Docs = { diff --git a/src/components/widgets/Navbar.astro b/src/components/widgets/Navbar.astro index 3394b95..8ac845a 100644 --- a/src/components/widgets/Navbar.astro +++ b/src/components/widgets/Navbar.astro @@ -30,7 +30,7 @@ const navItems = [ xHyroM