Update Footer.astro

This commit is contained in:
2026-06-13 17:17:11 +08:00
committed by GitHub
parent dd163c47dd
commit 9b4a9a1831
+5 -5
View File
@@ -19,8 +19,8 @@ const currentYear = new Date().getFullYear();
.site-footer { .site-footer {
margin-top: auto; margin-top: auto;
padding: 1.5rem 1rem; padding: 1.5rem 1rem;
background-color: #f9fafb; background-color: var(--color-bg-footer, #f9fafb);
border-top: 1px solid #e5e7eb; border-top: 1px solid var(--color-border, #e5e7eb);
} }
.footer-content { .footer-content {
@@ -37,17 +37,17 @@ const currentYear = new Date().getFullYear();
.icp { .icp {
margin: 0; margin: 0;
font-size: 0.875rem; font-size: 0.875rem;
color: #6b7280; color: var(--color-text-secondary, #6b7280);
} }
.icp a { .icp a {
color: #6b7280; color: var(--color-text-secondary, #6b7280);
text-decoration: none; text-decoration: none;
transition: color 0.2s ease; transition: color 0.2s ease;
} }
.icp a:hover { .icp a:hover {
color: #111827; color: var(--color-text-primary, #111827);
text-decoration: underline; text-decoration: underline;
} }
</style> </style>