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.

51 lines
995 B

3 years ago
// webpack (vite 用 alias 兼容了)
3 years ago
// @import '~@douyinfe/semi-ui/dist/css/semi.min.css';
3 years ago
@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%;
}
3 years ago
.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;
}
3 years ago
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
}
}