jinjianback1.1/src/styles/index.scss

66 lines
912 B
SCSS
Raw Normal View History

2017-11-24 16:30:40 +08:00
@import './variables.scss';
2017-06-30 11:01:04 +08:00
@import './mixin.scss';
2017-11-24 14:03:56 +08:00
@import './transition.scss';
2017-11-24 16:30:40 +08:00
@import './element-ui.scss';
@import './sidebar.scss';
2017-11-24 14:03:56 +08:00
2017-06-26 13:38:24 +08:00
body {
height: 100%;
2017-06-26 13:38:24 +08:00
-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;
}
label {
font-weight: 700;
}
2017-06-26 13:38:24 +08:00
html {
height: 100%;
2017-06-26 13:38:24 +08:00
box-sizing: border-box;
}
2019-01-11 15:47:58 +08:00
#app {
height: 100%;
}
2017-06-26 13:38:24 +08:00
*,
*:before,
*:after {
box-sizing: inherit;
}
a:focus,
a:active {
outline: none;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
2019-04-19 20:41:52 +08:00
div:focus {
outline: none;
}
2017-06-26 18:03:05 +08:00
.clearfix {
&:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
2017-06-26 13:38:24 +08:00
}
}
2019-04-19 20:41:52 +08:00
// main-container global css
2017-06-26 18:03:05 +08:00
.app-container {
padding: 20px;
2017-06-26 13:38:24 +08:00
}