diff options
author | 2023-04-19 21:38:59 +0200 | |
---|---|---|
committer | 2023-04-19 22:33:22 +0200 | |
commit | c45bce36f985a550d7bfad744099b601cb61e449 (patch) | |
tree | 2c5e186db857776a06879dce7529b5396de214b1 /src/tools/benchmark-builder/dynamic-values.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/tools/benchmark-builder/dynamic-values.vue')
-rw-r--r-- | src/tools/benchmark-builder/dynamic-values.vue | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/tools/benchmark-builder/dynamic-values.vue b/src/tools/benchmark-builder/dynamic-values.vue index 70268ae..189be9e 100644 --- a/src/tools/benchmark-builder/dynamic-values.vue +++ b/src/tools/benchmark-builder/dynamic-values.vue @@ -11,22 +11,18 @@ /> <n-tooltip> <template #trigger> - <n-button circle quaternary @click="values.splice(index, 1)"> - <template #icon> - <n-icon :component="Trash" depth="3" /> - </template> - </n-button> + <c-button circle variant="text" @click="values.splice(index, 1)"> + <n-icon :component="Trash" depth="3" size="18" /> + </c-button> </template> Delete value </n-tooltip> </n-space> - <n-button tertiary @click="addValue"> - <template #icon> - <n-icon :component="Plus" /> - </template> + <c-button @click="addValue"> + <n-icon :component="Plus" depth="3" mr-2 size="18" /> Add a measure - </n-button> + </c-button> </div> </template> |