mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
59 lines
980 B
SCSS
59 lines
980 B
SCSS
@import "./mixin.scss";
|
|
@import "./transition.scss";
|
|
@import "./element-plus.scss";
|
|
@import "./sidebar.scss";
|
|
@import "./dark.scss";
|
|
|
|
:root {
|
|
--pure-transition-duration: 0.016s;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizelegibility;
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
|
|
"Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
|
}
|
|
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* 头部用户信息样式重置 */
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
/* 灰色模式 */
|
|
.html-grey {
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
/* 色弱模式 */
|
|
.html-weakness {
|
|
filter: invert(80%);
|
|
}
|
|
|
|
.pc-spacing {
|
|
margin: 10px;
|
|
}
|
|
|
|
.mobile-spacing {
|
|
margin: 0;
|
|
}
|
|
|
|
/* 重置vxe-table中pager样式 */
|
|
.vxe-pager .vxe-pager--num-btn:not(.is--disabled).is--active {
|
|
color: #fff !important;
|
|
}
|