app.vue 481 Bytes
<template>
    <router-view></router-view>
</template>

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

<style lang="scss">
.ivu-card {
  .ivu-card-head {
    padding: 8px 10px;
  }

  &.flex-card {
    display: flex;
    flex-direction: column;

    .ivu-card-body {
      overflow: hidden;
      flex: 1;
    }
  }

  .ivu-card-extra {
    top: 10px;
  }
}

.pager:not(.ivu-page-simple) {
  text-align: right;
  margin-top: 20px;
}

.full-page {
  height: 100%;
}
</style>