aboutsummaryrefslogtreecommitdiff
path: root/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/html-wysiwyg-editor/editor/menu-bar.vue')
-rw-r--r--src/tools/html-wysiwyg-editor/editor/menu-bar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/html-wysiwyg-editor/editor/menu-bar.vue b/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
index ff21b69..b54d97b 100644
--- a/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
+++ b/src/tools/html-wysiwyg-editor/editor/menu-bar.vue
@@ -1,10 +1,10 @@
<template>
- <n-space align="center" :size="0">
+ <div flex items-center>
<template v-for="(item, index) in items">
<n-divider v-if="item.type === 'divider'" :key="`divider${index}`" vertical />
<menu-bar-item v-else-if="item.type === 'button'" :key="index" v-bind="item" />
</template>
- </n-space>
+ </div>
</template>
<script setup lang="ts">