index.scss 794 Bytes
@import './variables.scss';
@import './mixin.scss';
@import './element-ui.scss';
@import './menu.scss';

body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  height: 100%;
  box-sizing: border-box;
}

#app {
  height: 100%;
}

label {
  font-weight: 700;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

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

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

ul, p {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.block {
  display: block;
}

.pointer {
  cursor: pointer;
}

.inlineBlock {
  display: inline-block;
}

.text-center {
  text-align: center;
}