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

settings_block.vue « components « shared « 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: 1a63252a850e64e38bd25d0c6880ff069cb65159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <section class="settings-section">
    <div class="settings-sticky-header">
      <div class="settings-sticky-header-inner">
        <h4 class="gl-my-0">
          <slot name="title"></slot>
        </h4>
      </div>
    </div>
    <p class="gl-text-secondary">
      <slot name="description"></slot>
    </p>
    <slot></slot>
  </section>
</template>