change color

This commit is contained in:
lqins 2024-11-23 15:47:57 +08:00
parent d13fa1392f
commit 207f2b5ac4
4 changed files with 22 additions and 31 deletions

View File

@ -1,7 +1,7 @@
:root{ :root{
--sm-txt:rgba(163, 174, 208, 1); --sm-txt:rgba(163, 174, 208, 1);
--text-secondary: #8a939d; --text-secondary: #8a939d;
--el-color-primary: rgba(67, 24, 255, 1); --el-color-primary: rgb(107, 80, 225);
--el-component-size: 48px; --el-component-size: 48px;
--el-border-radius-base: 8px; --el-border-radius-base: 8px;
--el-color-primary-light-5:rgb(107, 85, 255); --el-color-primary-light-5:rgb(107, 85, 255);

View File

@ -54,3 +54,9 @@
width: 306px; width: 306px;
margin-right: 9px; margin-right: 9px;
} }
::v-deep(.el-tabs__item.is-active, .el-tabs__item:hover){
color: var(--common-text-color) !important;
}
.el-tabs__item{
color:var( --text-theme-color)
}

View File

@ -321,10 +321,4 @@ const doSubmitRegister = (verifyData) => {
margin-top: 20px margin-top: 20px
} }
::v-deep(.el-tabs__item.is-active, .el-tabs__item:hover){
color: var(--common-text-color) !important;
}
.el-tabs__item{
color:var( --text-theme-color)
}
</style> </style>

View File

@ -23,6 +23,7 @@
v-model="form.code" v-model="form.code"
maxlength="6" maxlength="6"
size="large" size="large"
placeholder="请输入验证码"
class="code-input" class="code-input"
/> />
<send-msg <send-msg
@ -46,8 +47,18 @@
<el-form-item> <el-form-item>
<div class="form-title">验证码</div> <div class="form-title">验证码</div>
<div class="flex w100"> <div class="flex w100">
<el-input v-model="form.code" maxlength="6" /> <el-input
<send-msg size="" :receiver="form.email" type="email" /> v-model="form.code"
maxlength="6"
size="large"
placeholder="请输入验证码"
class="code-input"
/>
<send-msg
size="large"
:receiver="form.email"
type="email"
/>
</div> </div>
</el-form-item> </el-form-item>
</el-tab-pane> </el-tab-pane>
@ -136,27 +147,7 @@ const save = () => {
<style lang="stylus"> <style lang="stylus">
@import "@/assets/css/login.styl" @import "@/assets/css/login.styl"
::v-deep(.el-tabs__item.is-active, .el-tabs__item:hover){
.reset-pass { color: var(--common-text-color) !important;
.form {
padding 0 20px
} }
.code-row {
width 100%
.send-button {
padding-left 10px
}
}
.reset-pass-dialog {
.el-dialog__footer {
text-align center
padding-top 0
}
.el-dialog__body {
padding 0
}
}
}
</style> </style>