From 9b4a9a1831b00b8560b533ce7c5daf091661447d Mon Sep 17 00:00:00 2001 From: QihanNX Date: Sat, 13 Jun 2026 17:17:11 +0800 Subject: [PATCH] Update Footer.astro --- src/components/Footer.astro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index efd4ee3..3e9e332 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -19,8 +19,8 @@ const currentYear = new Date().getFullYear(); .site-footer { margin-top: auto; padding: 1.5rem 1rem; - background-color: #f9fafb; - border-top: 1px solid #e5e7eb; + background-color: var(--color-bg-footer, #f9fafb); + border-top: 1px solid var(--color-border, #e5e7eb); } .footer-content { @@ -37,17 +37,17 @@ const currentYear = new Date().getFullYear(); .icp { margin: 0; font-size: 0.875rem; - color: #6b7280; + color: var(--color-text-secondary, #6b7280); } .icp a { - color: #6b7280; + color: var(--color-text-secondary, #6b7280); text-decoration: none; transition: color 0.2s ease; } .icp a:hover { - color: #111827; + color: var(--color-text-primary, #111827); text-decoration: underline; }