diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 8a89d31..ffb696c 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -14,7 +14,7 @@ footer { margin-top: 2rem; padding: 20px 20px; - background-color: var(--secondary-background); + background-color: var(--tertiary-background); } footer ul { diff --git a/src/components/Header.astro b/src/components/Header.astro index a766f3f..2f6b06c 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -13,7 +13,7 @@ const links = [ ] const isActive = (href: string)=>{ - return href === pathname || href === pathname.split('/').slice(0,2).join('/');; + return href === pathname || href === pathname.split('/').slice(0,2).join('/'); } ---