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: 1c9e3236d56edf6415d520b2ab58d794978a04c5 (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
30
31
32
<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-px-8 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 gl-px-8"
      :class="jobClasses"
    >
      <slot name="jobs"> </slot>
    </div>
  </div>
</template>