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

package_history_loader.vue « details « components « package_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 950971c2f11969f4217ffc764142c62182c9c36e (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
<script>
import { GlSkeletonLoader } from '@gitlab/ui';

export default {
  components: {
    GlSkeletonLoader,
  },
  loader: {
    width: 580,
    height: 80,
  },
};
</script>

<template>
  <div class="gl-ml-5 gl-md-max-w-70p">
    <gl-skeleton-loader :width="$options.loader.width" :height="$options.loader.height">
      <rect x="49" y="9" width="531" height="16" rx="4" />
      <circle cx="16" cy="16" r="16" />
      <rect x="49" y="57" width="302" height="16" rx="4" />
      <circle cx="16" cy="64" r="16" />
    </gl-skeleton-loader>
  </div>
</template>