47 lines
779 B
SCSS
Raw Normal View History

// 全局 CSS 变量
2022-05-25 21:53:38 +08:00
@import "variables.css";
// Transition
2022-05-25 21:53:38 +08:00
@import "./transition.scss";
// 注册主题
@import "./theme/register.scss";
2022-05-25 21:53:38 +08:00
// 业务页面几乎都应该在根元素上挂载 class="app-container",以保持页面美观
.app-container {
padding: 20px;
}
html {
height: 100%;
}
body {
height: 100%;
2022-05-25 21:53:38 +08:00
background-color: var(--v3-body-bg-color);
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial,
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;
}