view client/src/components/ui/SpinnerOverlay.vue @ 2968:8b32574bed09 unified_import

wip
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 01 Apr 2019 15:12:49 +0200
parents a702d9b652f7
children
line wrap: on
line source

<template>
  <transition name="fade">
    <div class="spinner-overlay">
      <font-awesome-icon icon="spinner" spin />
    </div>
  </transition>
</template>

<style lang="sass">
.spinner-overlay
  background: rgba(255, 255, 255, 0.9)
  position: absolute
  z-index: 99
  top: 0
  right: 0
  bottom: 0
  left: 0
  display: flex
  align-items: center
  justify-content: center
  color: #888
</style>