summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/shared/components/settings_block.vue
blob: 0458b914b58531ebd669d059068e6b830395f09e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <section class="settings gl-py-7">
    <div class="gl-lg-display-flex gl-gap-6">
      <div class="gl-lg-w-40p gl-pr-10 gl-flex-shrink-0">
        <h4>
          <slot name="title"></slot>
        </h4>
        <p>
          <slot name="description"></slot>
        </p>
      </div>
      <div class="gl-pt-3 gl-flex-grow-1">
        <slot></slot>
      </div>
    </div>
  </section>
</template>