This commit is contained in:
yixu
2025-09-16 17:19:31 +08:00
parent 44e9e099b2
commit 42c6610229
3 changed files with 9 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 128 KiB

View File

@@ -369,7 +369,7 @@ watch(() => mergeId, async (newVal) => {
<div class="scene-item item-2" @click="navigateSelectTemplatePage" :class="{ 'disabled': globalStore.game_chances <= 0 }"> <div class="scene-item item-2" @click="navigateSelectTemplatePage" :class="{ 'disabled': globalStore.game_chances <= 0 }">
<img src="../assets/images/join.webp" alt="立即参与"> <img src="../assets/images/join.webp" alt="立即参与">
<div class="join-main"> <div class="join-main">
<p class="join-value">{{ globalStore.game_chances }}</p> <p class="join-value"><span>X</span>{{ globalStore.game_chances }}</p>
</div> </div>
</div> </div>
<div class="scene-item item-3" @click="navigateTodoList"> <div class="scene-item item-3" @click="navigateTodoList">
@@ -499,10 +499,8 @@ watch(() => mergeId, async (newVal) => {
.join-main { .join-main {
position: absolute; position: absolute;
top: 3.4vw; top: 3.4vw;
right: 2.6vw; right: -0.4vw;
width: 7vw; width: 13vw;
line-height: 7vw;
text-align: left;
} }
.join-main .join-value { .join-main .join-value {
@@ -514,6 +512,10 @@ watch(() => mergeId, async (newVal) => {
font-weight: 900; font-weight: 900;
} }
.join-main .join-value span {
padding-right: 0.2vw;
}
.item-3 { .item-3 {
width: 21vw; width: 21vw;
bottom: 1vw; bottom: 1vw;

View File

@@ -187,7 +187,7 @@ const handleNavClick = (event) => {
width: 100vw; width: 100vw;
height: 200vw; height: 200vw;
background-image: url('../assets/images/generate/select-template-bg.webp'); background-image: url('../assets/images/generate/select-template-bg.webp');
background-size: cover; background-size: 100%;
background-repeat: no-repeat; background-repeat: no-repeat;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@@ -195,6 +195,7 @@ const handleNavClick = (event) => {
align-items: center; align-items: center;
position: relative; position: relative;
min-height: -webkit-fill-available; min-height: -webkit-fill-available;
margin-top: -4vw;
} }
.scene-item { .scene-item {