48 lines
722 B
Plaintext
48 lines
722 B
Plaintext
@borderColor: #ebebeb;
|
|
@fontBlue: #3ba1ff;
|
|
@headerHeight: 60px;
|
|
|
|
.boderAndRadius {
|
|
border: 1px solid @borderColor;
|
|
border-radius: 6px;
|
|
background: #fff;
|
|
}
|
|
|
|
.commonFont {
|
|
font-size: 16px;
|
|
color: #52575b;
|
|
}
|
|
|
|
.comonPromptFont {
|
|
font-size: 14px;
|
|
color: #b1b1b1;
|
|
}
|
|
|
|
.common-main {
|
|
background-color: white;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.noSelect {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.center() {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
|
|
// ::-webkit-scrollbar {
|
|
// width: 0 !important;
|
|
// }
|
|
// ::-webkit-scrollbar {
|
|
// width: 0 !important;height: 0;
|
|
// }
|