修复a标签变成黑色问题

This commit is contained in:
eoao
2025-04-27 17:19:37 +08:00
parent 71bb036d16
commit 55ad9ea71a
3 changed files with 18 additions and 5 deletions
+16
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>
-4
View File
@@ -10,10 +10,6 @@ html, body {
height: 100%;
}
a{
color: #333;
}
#app {
width: 100%;
height: 100%;
+2 -1
View File
@@ -45,7 +45,7 @@
</div>
<div>{{ formatBytes(att.size) }}</div>
<div class="down-icon att-icon">
<a :href="cvtR2Url(att.key)" download>
<a style="color: #333" :href="cvtR2Url(att.key)" download>
<Icon icon="system-uicons:push-down" width="22" height="22"/>
</a>
</div>
@@ -304,4 +304,5 @@ const handleDelete = () => {
}
}
}
</style>