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

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

export default {
  components: {
    GlSkeletonLoader,
  },
};
</script>
<template>
  <gl-skeleton-loader :width="500" :height="102">
    <rect width="500" height="16" rx="4" />
    <rect y="20" width="375" height="16" rx="4" />
    <rect x="380" y="20" width="120" height="16" rx="4" />
    <rect y="40" width="250" height="16" rx="4" />
    <rect x="255" y="40" width="150" height="16" rx="4" />
    <rect x="410" y="40" width="90" height="16" rx="4" />
  </gl-skeleton-loader>
</template>