diff options
author | 2023-04-20 20:49:28 +0200 | |
---|---|---|
committer | 2023-04-20 20:57:38 +0200 | |
commit | f080933d2a6f03ef54d40b57175a1bea276df675 (patch) | |
tree | d4c0abf43da4ea910f13c1f5b4a765279d6491dc /src/tools/benchmark-builder/benchmark-builder.vue | |
parent | bb32513bd34948b0f0a3d739c41bda303d01cf89 (diff) | |
download | it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.tar.gz it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.tar.zst it-tools-f080933d2a6f03ef54d40b57175a1bea276df675.zip |
refactor(ui): replaced naive ui cards with custom ones
Diffstat (limited to 'src/tools/benchmark-builder/benchmark-builder.vue')
-rw-r--r-- | src/tools/benchmark-builder/benchmark-builder.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/benchmark-builder/benchmark-builder.vue b/src/tools/benchmark-builder/benchmark-builder.vue index 5690c84..9943e06 100644 --- a/src/tools/benchmark-builder/benchmark-builder.vue +++ b/src/tools/benchmark-builder/benchmark-builder.vue @@ -2,7 +2,7 @@ <n-scrollbar style="flex: 1" x-scrollable> <n-space :wrap="false" style="flex: 1" justify="center" :size="0" mb-5> <div v-for="(suite, index) of suites" :key="index"> - <n-card style="width: 292px; margin: 0 8px 5px"> + <c-card style="width: 292px; margin: 0 8px 5px"> <n-form-item label="Suite name:" :show-feedback="false" label-placement="left"> <n-input v-model:value="suite.title" placeholder="Suite name..." /> </n-form-item> @@ -11,7 +11,7 @@ <n-form-item label="Suite values" :show-feedback="false"> <dynamic-values v-model:values="suite.data" /> </n-form-item> - </n-card> + </c-card> <n-space justify="center"> <c-button v-if="suites.length > 1" variant="text" @click="suites.splice(index, 1)"> |