This commit is contained in:
kron
2025-07-24 11:54:38 +08:00
parent 666c95e8b9
commit 553e23ed46
5 changed files with 19 additions and 5 deletions

View File

@@ -92,6 +92,11 @@ defineProps({
.players {
display: flex;
}
.players::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
.players > view {
width: 50%;
height: 85px;

View File

@@ -76,9 +76,8 @@ const goBack = () => {
</view>
<ScreenHint :show="showHint">
<view v-if="hintType === 1" class="tip-content">
<text
>完成进行中的对局才能开启新的您有正在进行中的对局是否进入?</text
>
<text>完成进行中的对局才能开启新的</text>
<text>您有正在进行中的对局是否进入?</text>
<view>
<button hover-class="none" @click="() => (showHint = false)">
不进入

View File

@@ -93,8 +93,8 @@ defineProps({
<style scoped>
.container {
width: calc(100% - 30px);
margin: 15px;
margin-bottom: 0;
margin: 0 15px;
margin-top: 5px;
display: flex;
justify-content: space-between;
align-items: flex-start;

View File

@@ -210,6 +210,11 @@ const toOrderPage = () => {
.vip-content > view:nth-child(2) {
overflow: auto;
}
.vip-content > view:nth-child(2)::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
.my-orders {
display: flex;
justify-content: center;

View File

@@ -295,6 +295,11 @@ const onPractiseLoading = async (page) => {
margin-bottom: 10px;
overflow-x: auto;
}
.contest-melee::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
.contest-team > view {
width: 50%;
}