完善登录页面布局

This commit is contained in:
2026-02-27 08:30:40 +08:00
parent 444385f075
commit d3872250dd
2 changed files with 18 additions and 2 deletions

View File

@@ -552,12 +552,15 @@ const handleQQLogin = () => uni.showToast({ title: 'QQ登录开发中', icon: 'n
.input{ .input{
width: 100%; width: 100%;
height: 44px; height: 44px;
line-height: 44px;
border-radius: 10px; border-radius: 10px;
background: var(--inputbg); background: var(--inputbg);
padding: 0 14px; padding: 0 14px;
font-size: 14px; font-size: 14px;
color: var(--text); color: var(--text);
box-sizing: border-box; box-sizing: border-box;
display: flex;
align-items: center;
} }
/* Code row */ /* Code row */

View File

@@ -429,8 +429,11 @@ page {
.input-field { .input-field {
flex: 1; flex: 1;
font-size: 28rpx; font-size: 28rpx;
height: 100%; height: 88rpx;
line-height: 88rpx;
color: #333333; color: #333333;
display: flex;
align-items: center;
} }
.code-input { .code-input {
@@ -479,7 +482,10 @@ page {
/* 已有账号提示 */ /* 已有账号提示 */
.tips { .tips {
margin-top: 30rpx; margin-top: 30rpx;
text-align: center; display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
} }
.tips-text { .tips-text {
@@ -497,10 +503,17 @@ page {
.protocol { .protocol {
margin-top: 40rpx; margin-top: 40rpx;
display: flex; display: flex;
flex-direction: row;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
.protocol checkbox-group {
display: flex;
flex-direction: row;
align-items: center;
}
.protocol checkbox { .protocol checkbox {
margin-right: 10rpx; margin-right: 10rpx;
} }