parent
ceeb490fb6
commit
a761ea3d0d
@ -0,0 +1,111 @@
|
|||||||
|
.loginModal {
|
||||||
|
width: 420px;
|
||||||
|
// height: 438px;
|
||||||
|
background: #f2f3f7;
|
||||||
|
border-radius: 18px;
|
||||||
|
padding: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginModalCont {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding-top: 24px;
|
||||||
|
padding-left: 16px;
|
||||||
|
padding-right: 16px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.closeIcon {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.closeIcon:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginTitle {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
width: 48px;
|
||||||
|
height: 34px;
|
||||||
|
top: 334px;
|
||||||
|
left: 694px;
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 33.6px;
|
||||||
|
text-align: left;
|
||||||
|
color: #1d2129;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginTip {
|
||||||
|
height: 18px;
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 18.2px;
|
||||||
|
color: #4e5969;
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pwdWrap {
|
||||||
|
padding-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.formInp {
|
||||||
|
width: 340px;
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 2px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
&.formInpUserName,
|
||||||
|
:global(.arco-input-inner-wrapper) {
|
||||||
|
background-color: #fff;
|
||||||
|
padding-left: 24px;
|
||||||
|
padding-right: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
:global(.arco-input-inner-wrapper svg) {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
color: rgba(#4e5969, 0.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginBtnWrap {
|
||||||
|
padding-top: 10px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginBtn {
|
||||||
|
width: 340px;
|
||||||
|
height: 50px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loginDesc {
|
||||||
|
line-height: 18px;
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 18.2px;
|
||||||
|
text-align: center;
|
||||||
|
color: #00000066;
|
||||||
|
margin-top: 50px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.protocal {
|
||||||
|
font-family: PingFang SC;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 18.2px;
|
||||||
|
text-align: center;
|
||||||
|
color: #000000f2;
|
||||||
|
}
|
@ -1,3 +1,3 @@
|
|||||||
export default function checkLogin() {
|
export default function checkLogin() {
|
||||||
return localStorage.getItem('userStatus') === 'login';
|
return !!localStorage.getItem('token');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue