fix: 修改部分黑金样式 (#5345)

This commit is contained in:
ssongliu 2024-06-07 22:36:22 +08:00 committed by GitHub
parent 1fcfbaf0a9
commit f433895c97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 3 deletions

View file

@ -187,7 +187,7 @@ onMounted(() => {
<style lang="scss" scoped>
.version {
font-size: 14px;
color: #858585;
color: var(--dark-gold-base-color);
text-decoration: none;
letter-spacing: 0.5px;
}

View file

@ -3,11 +3,11 @@
<LayoutContent v-loading="loading" :title="$t('setting.about')" :divider="true">
<template #main>
<div style="text-align: center; margin-top: 20px">
<div style="justify-self: center">
<div style="justify-self: center" class="logo">
<img v-if="globalStore.themeConfig.logo" style="width: 80px" :src="'/api/v1/images/logo'" />
<PrimaryLogo v-else />
</div>
<h3>{{ globalStore.themeConfig.title || $t('setting.description') }}</h3>
<h3 class="description">{{ globalStore.themeConfig.title || $t('setting.description') }}</h3>
<h3>
<SystemUpgrade />
</h3>
@ -81,4 +81,18 @@ onMounted(() => {
font-weight: 400;
}
}
.description {
color: var(--el-text-color-regular);
}
.logo {
display: flex;
align-items: center;
justify-content: center;
height: 55px;
img {
object-fit: contain;
width: 95%;
height: 45px;
}
}
</style>