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

form_field_container.vue « components « releases « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19e275315a022f382a9dcf07b8edcb99220fbfa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<script>
export default {
  name: 'FormFieldContainer',
};
</script>
<template>
  <div class="row">
    <div class="col-md-6 col-lg-5 col-xl-4 gl-display-flex gl-flex-direction-column">
      <slot></slot>
    </div>
  </div>
</template>