You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
602 B
38 lines
602 B
3 years ago
|
// webpack (vite 用 alias 兼容了)
|
||
|
@import '~@douyinfe/semi-ui/dist/css/semi.min.css';
|
||
|
@import '~perfect-scrollbar/css/perfect-scrollbar.css';
|
||
|
@import '~nprogress/nprogress.css';
|
||
|
|
||
|
|
||
|
*,
|
||
|
*::before,
|
||
|
*::after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
margin: 0;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
|
||
|
a:link {
|
||
|
text-decoration: none;
|
||
|
color: unset
|
||
|
}
|
||
|
|
||
|
a:visited {
|
||
|
text-decoration: none;
|
||
|
color: unset
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
text-decoration: none;
|
||
|
color: unset
|
||
|
}
|
||
|
|
||
|
a:active {
|
||
|
text-decoration: none;
|
||
|
color: unset
|
||
|
}
|
||
|
}
|