2022-04-22 01:16:02 +08:00
|
|
|
@import "./mixins.scss"; // mixins
|
|
|
|
@import "./transition.scss"; // transition
|
|
|
|
@import "./theme/register.scss"; // 注册主题
|
2022-04-21 18:20:39 +08:00
|
|
|
|
|
|
|
.app-container {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
background-color: #f0f2f5; // 全局背景色
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2022-04-22 01:16:02 +08:00
|
|
|
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial,
|
2022-04-21 18:20:39 +08:00
|
|
|
sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:focus,
|
|
|
|
a:hover {
|
|
|
|
color: inherit;
|
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|