💄 增加浅色模式下的可见度

This commit is contained in:
BTMuli
2025-11-22 01:15:25 +08:00
parent 3a542ead17
commit dcc0d7d052

View File

@@ -3,7 +3,7 @@
<v-app-bar>
<template #prepend>
<div class="gb-top-title">
<img src="/icon/nation/千星奇域.webp" alt="gacha" />
<img class="gb-top-byd" src="/icon/nation/千星奇域.webp" alt="byd" />
<span>祈愿记录</span>
<v-select
:hide-details="true"
@@ -13,7 +13,7 @@
variant="outlined"
label="游戏UID"
/>
<img src="/source/UI/userGacha.webp" alt="byd" @click="toGacha()" title="祈愿" />
<img src="/source/UI/userGacha.webp" alt="gacha" @click="toGacha()" title="祈愿" />
</div>
</template>
<template #extension>
@@ -290,6 +290,14 @@ async function deleteGacha(): Promise<void> {
}
}
.gb-top-byd {
filter: invert(0.75);
}
.dark .gb-top-byd {
filter: none;
}
.gb-top-btns {
display: flex;
margin-left: 16px;