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

section_layout.vue « components « security_configuration « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1fe8dd862a0185a51f9a7b22db0670e44afb5897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script>
export default {
  name: 'SectionLayout',
  props: {
    heading: {
      type: String,
      required: true,
    },
  },
};
</script>

<template>
  <div class="row gl-line-height-20 gl-pt-6">
    <div class="col-lg-4">
      <h2 class="gl-font-size-h2 gl-mt-0">{{ heading }}</h2>
      <slot name="description"></slot>
    </div>
    <div class="col-lg-8">
      <slot name="features"></slot>
    </div>
  </div>
</template>