view client/src/components/ui/UISpinnerOverlay.vue @ 2890:6f7b8755eb07

added license information to file
author Markus Kottlaender <markus@intevation.de>
date Mon, 01 Apr 2019 19:19:29 +0200
parents ac4732c57b0b
children 84d01a536bec
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>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */
</script>