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.
78 lines
1.4 KiB
78 lines
1.4 KiB
// 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%;
|
|
overflow: hidden;
|
|
|
|
#App {
|
|
height: 100%;
|
|
}
|
|
|
|
.semi-timepicker-panel {
|
|
|
|
//时间选择器不显示滚动栏
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
/* Chrome Safari */
|
|
|
|
}
|
|
|
|
scrollbar-width: none;
|
|
/* firefox */
|
|
-ms-overflow-style: none;
|
|
/* IE 10+ */
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
// SEMI 全局样式
|
|
.semi-popover-content {
|
|
min-width: 300px
|
|
}
|
|
|
|
.semi-portal-inner {
|
|
position: fixed;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'YouSheBiaoTiHei'; //这个可以任意取,但是应与后面相对应eg:yxingguang
|
|
src: url('/assets/fonts/YouSheBiaoTiHei-2.ttf');
|
|
}
|
|
@font-face {
|
|
font-family: 'DINExp'; //这个可以任意取,但是应与后面相对应eg:yxingguang
|
|
src: url('/assets/fonts/DINExp.ttf');
|
|
}
|