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

main_graph_wrapper.vue « graph_shared « components « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcd7705669ee6d7436615bd4cbc5388b938022f7 (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
29
<script>
export default {
  props: {
    stageClasses: {
      type: String,
      required: false,
      default: '',
    },
    jobClasses: {
      type: String,
      required: false,
      default: '',
    },
  },
};
</script>
<template>
  <div>
    <div class="gl-display-flex gl-align-items-center gl-w-full gl-mb-5" :class="stageClasses">
      <slot name="stages"> </slot>
    </div>
    <div
      class="gl-display-flex gl-flex-direction-column gl-align-items-center gl-w-full"
      :class="jobClasses"
    >
      <slot name="jobs"> </slot>
    </div>
  </div>
</template>