Update Footer.astro

This commit is contained in:
2026-06-13 16:37:42 +08:00
committed by GitHub
parent 9a13d54964
commit 5f94fff0c8
+6 -2
View File
@@ -19,7 +19,6 @@ const currentYear = new Date().getFullYear();
.site-footer { .site-footer {
margin-top: auto; margin-top: auto;
padding: 1.5rem 1rem; padding: 1.5rem 1rem;
text-align: center;
background-color: #f9fafb; background-color: #f9fafb;
border-top: 1px solid #e5e7eb; border-top: 1px solid #e5e7eb;
} }
@@ -27,11 +26,16 @@ const currentYear = new Date().getFullYear();
.footer-content { .footer-content {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
} }
.copyright, .copyright,
.icp { .icp {
margin: 0 0 0.5rem 0; margin: 0;
font-size: 0.875rem; font-size: 0.875rem;
color: #6b7280; color: #6b7280;
} }