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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/environments/components/empty_state.vue')
-rw-r--r--app/assets/javascripts/environments/components/empty_state.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/environments/components/empty_state.vue b/app/assets/javascripts/environments/components/empty_state.vue
index 3ac32f0d045..5b9cc2f3d21 100644
--- a/app/assets/javascripts/environments/components/empty_state.vue
+++ b/app/assets/javascripts/environments/components/empty_state.vue
@@ -42,7 +42,7 @@ export default {
};
</script>
<template>
- <gl-empty-state class="gl-layout-w-limited" :title="title">
+ <gl-empty-state class="gl-layout-w-limited gl-mx-auto" :title="title">
<template #description>
<gl-sprintf :message="content">
<template #link="{ content: contentToDisplay }">
@@ -51,10 +51,10 @@ export default {
</gl-sprintf>
</template>
<template v-if="!hasTerm" #actions>
- <gl-button :href="newEnvironmentPath" variant="confirm">
+ <gl-button class="gl-mx-2 gl-mb-3" :href="newEnvironmentPath" variant="confirm">
{{ $options.i18n.newEnvironmentButtonLabel }}
</gl-button>
- <gl-button @click="$emit('enable-review')">
+ <gl-button class="gl-mx-2 gl-mb-3" @click="$emit('enable-review')">
{{ $options.i18n.enablingReviewButtonLabel }}
</gl-button>
</template>