样式优化

This commit is contained in:
kron
2025-09-25 16:13:50 +08:00
parent b8d0c6c567
commit 91535abfd7
2 changed files with 3 additions and 2 deletions

View File

@@ -110,7 +110,6 @@ onBeforeUnmount(() => {
> >
<block v-if="user.id"> <block v-if="user.id">
<Avatar <Avatar
:rankLvl="user.rankLvl"
:src="user.avatar" :src="user.avatar"
:onClick="toUserPage" :onClick="toUserPage"
:size="40" :size="40"

View File

@@ -79,7 +79,7 @@ const onPay = (index) => {
display: grid; display: grid;
grid-template-columns: repeat(3, 1fr); grid-template-columns: repeat(3, 1fr);
row-gap: 20rpx; row-gap: 20rpx;
column-gap: 30rpx; column-gap: 20rpx;
} }
.amounts > button { .amounts > button {
width: 150rpx; width: 150rpx;
@@ -141,6 +141,7 @@ const onPay = (index) => {
line-height: 40rpx; line-height: 40rpx;
padding: 10rpx; padding: 10rpx;
font-size: 30rpx; font-size: 30rpx;
margin-right: 10rpx;
} }
.container > view:nth-child(4) > view > textarea { .container > view:nth-child(4) > view > textarea {
width: 70%; width: 70%;
@@ -150,5 +151,6 @@ const onPay = (index) => {
line-height: 40rpx; line-height: 40rpx;
padding: 10rpx; padding: 10rpx;
font-size: 30rpx; font-size: 30rpx;
margin-right: 10rpx;
} }
</style> </style>