diff options
Diffstat (limited to 'src/components/ToolCard.vue')
-rw-r--r-- | src/components/ToolCard.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index 64dc113..db67914 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -1,9 +1,9 @@ <template> <router-link :to="tool.path"> <c-card class="tool-card"> - <n-space justify="space-between" align="center"> + <div flex items-center justify-between> <n-icon class="icon" size="40" :component="tool.icon" /> - <n-space align="center"> + <div flex items-center gap-8px> <n-tag v-if="tool.isNew" size="small" @@ -17,8 +17,8 @@ </n-tag> <favorite-button :tool="tool" /> - </n-space> - </n-space> + </div> + </div> <n-h3 class="title"> <n-ellipsis>{{ tool.name }}</n-ellipsis> </n-h3> |