30 lines
688 B
SCSS
30 lines
688 B
SCSS
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');
|
|
|
|
body {
|
|
@apply text-base text-tx-primary overflow-hidden min-w-[375px];
|
|
font-feature-settings: 'tnum' 1;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.form-tips {
|
|
@apply text-tx-secondary text-xs leading-6 mt-1;
|
|
}
|
|
|
|
.clearfix:after {
|
|
content: '';
|
|
display: block;
|
|
clear: both;
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* NProgress */
|
|
#nprogress .bar {
|
|
@apply bg-primary #{!important};
|
|
height: 3px !important;
|
|
}
|
|
|
|
#nprogress .peg {
|
|
box-shadow: 0 0 8px var(--el-color-primary), 0 0 4px var(--el-color-primary) !important;
|
|
}
|