Commit 6e727fa0 authored by Cai Wei's avatar Cai Wei

fix(*): 合并冲突

parents 5a77e1a8 82c897f5
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -40,6 +40,17 @@ ...@@ -40,6 +40,17 @@
box-shadow: 0px 3px 6px 0px rgba(13, 15, 18, 0.1); box-shadow: 0px 3px 6px 0px rgba(13, 15, 18, 0.1);
padding: 1rem; padding: 1rem;
box-sizing: border-box; box-sizing: border-box;
padding: 0;
margin: 0;
}
.page-container {
width: 100%;
background: #ffffff;
border-radius: 6px;
box-shadow: 0px 3px 6px 0px rgba(13, 15, 18, 0.10);
padding: 1rem;
box-sizing: border-box;
} }
.view-btn { .view-btn {
...@@ -51,6 +62,26 @@ ...@@ -51,6 +62,26 @@
} }
.el-button--primary { .el-button--primary {
background-color: #2182a0 !important; background-color: #2182a0 !important;
border-color: #2182a0 !important; border-color: #2182a0 !important;
}
.login-container .el-form-item {
background: transparent !important;
border: unset !important;
}
.login-container .el-input__wrapper {
background: #181d21 !important;
border-radius: 0 !important;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-text-fill-color: black !important;
-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
background-color: transparent;
background-image: none;
transition: background-color 50000s ease-in-out 0s;
} }
\ No newline at end of file
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
tabindex="1" tabindex="1"
@blur="handleAccountBlur($event)" @blur="handleAccountBlur($event)"
@input="debounceAction" @input="debounceAction"
autocomplete="on" autocomplete="off"
/> />
</el-form-item> </el-form-item>
</div> </div>
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
show-password show-password
placeholder="密码 / Password" placeholder="密码 / Password"
tabindex="1" tabindex="1"
autocomplete="off"
/> />
</el-form-item> </el-form-item>
</el-tooltip> </el-tooltip>
...@@ -1164,8 +1165,10 @@ $light_gray: #eee; ...@@ -1164,8 +1165,10 @@ $light_gray: #eee;
.login-container { .login-container {
min-height: 100vh; min-height: 100vh;
width: 100%; width: 100%;
background-image: url("../../assets/bg.jpg"); background: url("../../assets/bg.png") no-repeat;
background-size: cover; background-size: 100% 500px;
background-position: calc(50% - 640px) center;
background-color: #000;
overflow: hidden; overflow: hidden;
.login-container-title { .login-container-title {
...@@ -1173,30 +1176,38 @@ $light_gray: #eee; ...@@ -1173,30 +1176,38 @@ $light_gray: #eee;
.title { .title {
font-size: 38px; font-size: 38px;
color: #fff;
text-align: right;
padding-right: 4%;
} }
} }
.login-old { .login-old {
width: 457px; width: 457px;
height: 500px; height: 500px;
background: rgba(255, 255, 255, 1); // background: rgba(255, 255, 255, 1);
box-shadow: 0px 15px 30px 0px rgba(0, 85, 183, 0.15); background: #191c21;
box-shadow: 0px 15px 30px 0px rgba(255, 255, 255, 0.2);
padding: 40px; padding: 40px;
position: absolute; position: absolute;
right:10%; right:4%;
top: 15%; top: calc(50% - 250px);
// transform: translateY(-50%); border-radius: 4px;
border-radius: 20px;
.el-checkbox-group label { .el-checkbox-group label {
margin-top: 20px; margin-top: 20px;
} }
button { button {
width: 100%; width: 100%;
margin-top: 40px; margin-top: 40px;
background: #2182a0; background: #181d21 !important;
color: #36f1cd !important;
border: 1px solid #2a2a2a !important;
height: 40px; height: 40px;
transition: border 0.5s ease;
}
button:hover {
border: 1px solid rgba(54, 241, 205, 0.7) !important;
} }
img { img {
...@@ -1220,6 +1231,11 @@ $light_gray: #eee; ...@@ -1220,6 +1231,11 @@ $light_gray: #eee;
.el-checkbox-group label { .el-checkbox-group label {
margin-top: 20px; margin-top: 20px;
} }
.el-form-item {
border-bottom: 0 !important;
background: transparent !important;
}
.login-btn { .login-btn {
width: 100%; width: 100%;
...@@ -1268,11 +1284,11 @@ $light_gray: #eee; ...@@ -1268,11 +1284,11 @@ $light_gray: #eee;
.title { .title {
font-size: 26px; font-size: 26px;
display: inline-block; display: inline-block;
color: #2182a0; color: #36f1cd;
} }
span { span {
color: #d4d4d4; color: #29ad93;
margin-left: 10px; margin-left: 10px;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment