添加新年主题

This commit is contained in:
kron
2025-12-31 16:42:53 +08:00
parent af852d9b59
commit 60b1006447
4 changed files with 28 additions and 0 deletions

View File

@@ -153,6 +153,12 @@ onShareTimeline(() => {
<template>
<Container :isHome="true" :showBackToGame="true">
<view class="container">
<view class="top-theme">
<image
src="https://static.shelingxingqiu.com/attachment/2025-12-31/dfc9dxrq4xn7e6y2pp.png"
mode="widthFix"
/>
</view>
<UserHeader showRank :onSignin="() => (showModal = true)" />
<view :style="{ padding: '12px 10px' }">
<view class="feature-grid">
@@ -501,4 +507,16 @@ onShareTimeline(() => {
font-size: 24rpx;
color: #999999;
}
.top-theme {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 60px;
}
.top-theme > image {
width: 300rpx;
transform: translate(-4%, -14%);
}
</style>