Skip to content

Commit 7d437f8

Browse files
committed
feat: add icp
1 parent 4154c81 commit 7d437f8

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/App.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,11 @@ onUnmounted(() => {
287287

288288
<footer class="footer">
289289
<div class="footer-content">
290-
<p class="copyright">{{ t("footer.copyright") }}</p>
290+
<p class="copyright">
291+
<span>{{ t("footer.copyright") }}</span>
292+
<span class="footer-divider" aria-hidden="true"> · </span>
293+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer">蜀ICP备2023035054号-3</a>
294+
</p>
291295
</div>
292296
</footer>
293297
</div>

src/styles/site.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,6 +1377,20 @@
13771377
margin: 0;
13781378
}
13791379

1380+
.copyright a {
1381+
color: inherit;
1382+
text-decoration: none;
1383+
}
1384+
1385+
.copyright a:hover {
1386+
text-decoration: underline;
1387+
}
1388+
1389+
.footer-divider {
1390+
opacity: 0.7;
1391+
margin: 0 0.35rem;
1392+
}
1393+
13801394
@media (max-width: 768px) {
13811395
.intro-stats {
13821396
grid-template-columns: 1fr;

0 commit comments

Comments
 (0)