mirror of
https://github.com/Kisechan/Mainpage.git
synced 2025-07-09 14:47:18 +00:00
优化页面标题,添加 Font Awesome 图标,调整样式以提升用户体验
This commit is contained in:
@ -13,12 +13,12 @@
|
||||
</p>
|
||||
<hr />
|
||||
<div class="github-calendar-container">
|
||||
<h3>My Github Contributions</h3>
|
||||
<h3><i class="fa-solid fa-code-branch"></i>My Github Contributions</h3>
|
||||
<div id="github-graph"></div>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="rss-feed-container">
|
||||
<h3>Latest Blog Posts</h3>
|
||||
<h3><i class="fa-solid fa-box-archive"></i>Latest Blog Posts</h3>
|
||||
<el-row :gutter="20">
|
||||
<el-col v-for="item in feedItems" :key="item.link" :span="24">
|
||||
<el-card class="blog-card" shadow="hover">
|
||||
@ -351,4 +351,10 @@ onUnmounted(() => {
|
||||
.read-more-card:hover .read-more-icon {
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
h3 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
</style>
|
||||
|
@ -1,5 +1,8 @@
|
||||
<template>
|
||||
<div class="friend-links">
|
||||
<h1>
|
||||
<i class="fa-solid fa-link"></i>友链
|
||||
</h1>
|
||||
<!-- 加载状态 -->
|
||||
<div v-if="loading" class="loading-container">
|
||||
<el-skeleton :rows="10" animated />
|
||||
@ -200,4 +203,10 @@ export default {
|
||||
.loading-container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user