diff options
Diffstat (limited to 'src/components/TextareaCopyable.vue')
-rw-r--r-- | src/components/TextareaCopyable.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/TextareaCopyable.vue b/src/components/TextareaCopyable.vue index 38288d4..17f90e2 100644 --- a/src/components/TextareaCopyable.vue +++ b/src/components/TextareaCopyable.vue @@ -21,9 +21,9 @@ <span>{{ tooltipText }}</span> </n-tooltip> </c-card> - <n-space v-if="copyPlacement === 'outside'" justify="center" mt-4> + <div v-if="copyPlacement === 'outside'" mt-4 flex justify-center> <c-button @click="onCopyClicked"> {{ tooltipText }} </c-button> - </n-space> + </div> </div> </template> |