修复a标签变成黑色问题

This commit is contained in:
eoao
2025-04-27 17:19:37 +08:00
parent aa02573217
commit 59c5be2623
3 changed files with 18 additions and 5 deletions

View File

@@ -29,6 +29,11 @@
</el-menu>
</div>
</el-scrollbar>
<div class="github">
<a href="https://github.com/LaziestRen/cloud-mail">
<Icon icon="codicon:github-inverted" width="30" height="30" />
</a>
</div>
</template>
<script setup>
@@ -129,4 +134,15 @@ const route = useRoute();
.scroll {
box-shadow: 6px 0 20px rgba(0, 21, 41, 0.35);
}
.github {
position: absolute;
width: 100%;
bottom: 10px;
display: flex;
justify-content: center;
a{
color: #fff;
}
}
</style>