Welcome to mirror list, hosted at ThFree Co, Russian Federation.

loading_indicator.vue « components « content_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2af6cabddb2b1d5cb8e8ac2d638cb06f982bae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script>
import { GlLoadingIcon } from '@gitlab/ui';

export default {
  components: {
    GlLoadingIcon,
  },
};
</script>
<template>
  <div
    data-testid="content-editor-loading-indicator"
    class="gl-w-full gl-display-flex gl-justify-content-center gl-align-items-center gl-absolute gl-top-0 gl-bottom-0"
  >
    <div class="gl-bg-white gl-absolute gl-w-full gl-h-full gl-opacity-3"></div>
    <gl-loading-icon size="lg" />
  </div>
</template>