diff options
author | 2023-04-19 21:38:59 +0200 | |
---|---|---|
committer | 2023-04-19 22:33:22 +0200 | |
commit | c45bce36f985a550d7bfad744099b601cb61e449 (patch) | |
tree | 2c5e186db857776a06879dce7529b5396de214b1 /src/components/TextareaCopyable.vue | |
parent | df989e24b3937876f094301e33762677d604888a (diff) | |
download | it-tools-c45bce36f985a550d7bfad744099b601cb61e449.tar.gz it-tools-c45bce36f985a550d7bfad744099b601cb61e449.tar.zst it-tools-c45bce36f985a550d7bfad744099b601cb61e449.zip |
refactor(ui): getting ride of naive ui buttons
Diffstat (limited to 'src/components/TextareaCopyable.vue')
-rw-r--r-- | src/components/TextareaCopyable.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/TextareaCopyable.vue b/src/components/TextareaCopyable.vue index 6be5652..ac4f38f 100644 --- a/src/components/TextareaCopyable.vue +++ b/src/components/TextareaCopyable.vue @@ -13,16 +13,16 @@ <n-tooltip v-if="value" trigger="hover"> <template #trigger> <div class="copy-button" :class="[copyPlacement]"> - <n-button circle secondary size="large" @click="onCopyClicked"> + <c-button circle important:h-10 important:w-10 @click="onCopyClicked"> <n-icon size="22" :component="Copy" /> - </n-button> + </c-button> </div> </template> <span>{{ tooltipText }}</span> </n-tooltip> </n-card> <n-space v-if="copyPlacement === 'outside'" justify="center" mt-4> - <n-button secondary @click="onCopyClicked"> {{ tooltipText }} </n-button> + <c-button @click="onCopyClicked"> {{ tooltipText }} </c-button> </n-space> </div> </template> |