aboutsummaryrefslogtreecommitdiff
path: root/src/components/big_spinner/big_spinner.vue
blob: 64f16e4d804f7ed10753857f56604f37f58815b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="big-spinner">
    <i class="icon-spin4 animate-spin" />
  </div>
</template>

<style lang="scss">
.big-spinner {
  font-size: 15em;
  line-height: 0;
  opacity: .6;
  > i {
    color: white;
  }
}
</style>