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

explore.vue « skeleton « components « observability « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f748086eef2a45acba5f8cde41a35c856e7d03f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- eslint-disable vue/multi-word-component-names -->
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

export default {
  components: {
    GlSkeletonLoader,
  },
};
</script>
<template>
  <gl-skeleton-loader :height="200">
    <!--  Top left -->
    <circle y="2" cx="6" cy="6" r="4" />
    <rect y="2" x="15" width="15" height="8" />
    <rect y="2" x="35" width="40" height="8" />

    <!--  Top right -->

    <rect y="2" x="263" width="13" height="8" />
    <rect y="2" x="278" width="8" height="8" />
    <rect y="2" x="288" width="50" height="8" />
    <rect y="2" x="340" width="18" height="8" />
    <rect y="2" x="360" width="30" height="8" />

    <rect y="15" width="400" height="30" rx="2" ry="2" />
  </gl-skeleton-loader>
</template>