App.vue 1.07 KB
<template>
  <div id="app">
    <router-view/>
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>



<style lang="scss">
// @import "./styles/common";
// @import "./styles/vars";
body {
  margin: 0px;
  padding: 0px;
  // background: @color-primary;
  // font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
  //   Microsoft YaHei, SimSun, sans-serif;
  // font-size: 14px;
  // -webkit-font-smoothing: antialiased;
}

#app {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
}

.el-submenu [class^="fa"] {
  vertical-align: baseline;
  margin-right: 10px;
}

.el-menu-item [class^="fa"] {
  vertical-align: baseline;
  margin-right: 10px;
}

.toolbar {
  background: #f2f2f2;
  padding: 10px;
  margin: 10px 0px;
  .el-form-item {
    margin-bottom: 10px;
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: all 0.2s ease;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

.avatar-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  .avatar {
    width: 40px;
    height: 40px;
  }
}

</style>