diff options
author | 2023-05-27 17:36:15 +0200 | |
---|---|---|
committer | 2023-05-27 17:53:13 +0200 | |
commit | 4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (patch) | |
tree | fe107c22780cb88fe0839a7940c0a26a1f58d76a /src/components/TextareaCopyable.vue | |
parent | 34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29 (diff) | |
download | it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.gz it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.zst it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.zip |
refactor(ui): removed all n-space
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> |