index.scss 938 Bytes
Newer Older
Pan's avatar
Pan committed
1
@import './variables.scss';
Pan's avatar
Pan committed
2
@import './mixin.scss';
Pan's avatar
Pan committed
3
@import './transition.scss';
Pan's avatar
Pan committed
4 5
@import './element-ui.scss';
@import './sidebar.scss';
yanzhongrong's avatar
yanzhongrong committed
6
@import './common.scss';
Pan's avatar
Pan committed
7

Pan's avatar
Pan committed
8
body {
9
  height: 100%;
Pan's avatar
Pan committed
10 11 12 13 14 15
  -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;
}

renhanxue's avatar
renhanxue committed
16

17 18 19 20
label {
  font-weight: 700;
}

Pan's avatar
Pan committed
21
html {
22
  height: 100%;
Pan's avatar
Pan committed
23 24 25
  box-sizing: border-box;
}

Pan's avatar
Pan committed
26
#app {
27 28 29
  height: 100%;
}

Pan's avatar
Pan committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
*,
*:before,
*:after {
  box-sizing: inherit;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

花裤衩's avatar
花裤衩 committed
49 50 51 52
div:focus {
  outline: none;
}

Pan's avatar
Pan committed
53 54 55 56 57 58 59 60
.clearfix {
  &:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
Pan's avatar
Pan committed
61 62 63
  }
}

花裤衩's avatar
花裤衩 committed
64
// main-container global css
Pan's avatar
Pan committed
65 66
.app-container {
  padding: 20px;
Pan's avatar
Pan committed
67
}