🚸 添加BETA提示

This commit is contained in:
BTMuli
2025-11-25 16:43:40 +08:00
parent db03f211d4
commit b3c42428e9

View File

@@ -11,6 +11,7 @@
{{ postViewWide ? "mdi-arrow-collapse-horizontal" : "mdi-arrow-expand-horizontal" }}
</v-icon>
</div>
<div class="tpw2-beta-hint" title="测试功能,可能存在适配问题">β</div>
</div>
</template>
<script lang="ts" setup>
@@ -74,4 +75,21 @@ function switchPostWidth(): void {
align-items: center;
justify-content: center;
}
.tpw2-beta-hint {
position: absolute;
right: -5px;
bottom: -5px;
display: flex;
width: 16px;
height: 16px;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--tgc-od-green);
box-shadow: 1px 3px 6px var(--common-shadow-2);
color: var(--tgc-blue-1);
font-size: 10px;
font-weight: bold;
}
</style>