样式调整

dev
dengjia 2025-08-28 16:51:52 +08:00
parent 958d65455c
commit 0ba8c26a53
2 changed files with 14 additions and 5 deletions

View File

@ -78,7 +78,7 @@ const verificationSuccess = () => {
.mi-captcha {
width: 100%;
flex: 1;
height: 40px;
height: 58px;
font-family: "Pingfang SC", "Microsoft YaHei", "Monospaced Number",
"Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial,
@ -167,7 +167,7 @@ const verificationSuccess = () => {
flex-direction: row;
height: 2.625rem;
padding-left: 0.125rem;
font-size: 0.875rem;
font-size: 16px;
color: #fff;
overflow: hidden;
text-overflow: ellipsis;

View File

@ -39,7 +39,9 @@
<verification v-model:verification-pass="verificationPass" />
</el-form-item>
<el-form-item class="button">
<el-button native-type="submit">登录</el-button>
<el-button native-type="submit" style="font-size: 18px"
><span>登录</span>
</el-button>
</el-form-item>
</el-form>
<!-- <div class="tips">
@ -196,20 +198,27 @@ const fnSubmitLogin = async () => {
.el-form-item {
.el-input {
height: 40px;
height: 58px;
font-size: 18px;
}
}
.button {
position: absolute;
bottom: 30px;
// height: 58px;
width: 445px;
font-size: 18px;
.el-button {
background: #0a7dfe;
height: 45px;
height: 58px;
width: 100%;
color: #ffffff;
margin-top: 10px;
font-size: 18px;
span {
font-size: 18px;
}
}
}