@@ -50,43 +50,43 @@ const triggerUpload = () => {
50
50
<div class =" flex gap-1 lg:gap-4" >
51
51
<div v-if =" heading || bold || italic" class =" flex gap-1" >
52
52
<CoreButton v-if =" heading" class =" p-1 border border-layer" title =" Heading" @click =" $emit('heading')" >
53
- <Icon name =" FormatHeading" />
53
+ <Icon name =" FormatHeading" size = " 1.5rem " />
54
54
</CoreButton >
55
55
<CoreButton v-if =" bold" class =" p-1 border border-layer" title =" Bold" @click =" $emit('bold')" >
56
- <Icon name =" FormatBold" />
56
+ <Icon name =" FormatBold" size = " 1.5rem " />
57
57
</CoreButton >
58
58
<CoreButton v-if =" italic" class =" p-1 border border-layer" title =" Italic" @click =" $emit('italic')" >
59
- <Icon name =" FormatItalic" />
59
+ <Icon name =" FormatItalic" size = " 1.5rem " />
60
60
</CoreButton >
61
61
</div >
62
62
<div v-if =" blockquote || code" class =" flex gap-1" >
63
63
<CoreButton v-if =" blockquote" class =" p-1 border border-layer" title =" Blockquote" @click =" $emit('blockquote')" >
64
- <Icon name =" FormatBlockquote" />
64
+ <Icon name =" FormatBlockquote" size = " 1.5rem " />
65
65
</CoreButton >
66
66
<CoreButton v-if =" code" class =" p-1 border border-layer" title =" Code" @click =" $emit('code')" >
67
- <Icon name =" FormatCode" />
67
+ <Icon name =" FormatCode" size = " 1.5rem " />
68
68
</CoreButton >
69
69
</div >
70
70
<div v-if =" bulletList || numberList || taskList" class =" flex gap-1" >
71
71
<CoreButton v-if =" bulletList" class =" p-1 border border-layer" title =" Bullet List" @click =" $emit('bulletList')" >
72
- <Icon name =" FormatListBulleted" />
72
+ <Icon name =" FormatListBulleted" size = " 1.5rem " />
73
73
</CoreButton >
74
74
<CoreButton v-if =" numberList" class =" p-1 border border-layer" title =" Number List" @click =" $emit('numberList')" >
75
- <Icon name =" FormatListNumbered" />
75
+ <Icon name =" FormatListNumbered" size = " 1.5rem " />
76
76
</CoreButton >
77
77
<CoreButton v-if =" taskList" class =" p-1 border border-layer" title =" Task List" @click =" $emit('taskList')" >
78
- <Icon name =" FormatListChecked" />
78
+ <Icon name =" FormatListChecked" size = " 1.5rem " />
79
79
</CoreButton >
80
80
</div >
81
81
<div v-if =" link || image || upload" class =" flex gap-1" >
82
82
<CoreButton v-if =" link" class =" p-1 border border-layer" title =" Link" @click =" $emit('link')" >
83
- <Icon name =" FormatLink" />
83
+ <Icon name =" FormatLink" size = " 1.5rem " />
84
84
</CoreButton >
85
85
<CoreButton v-if =" image" class =" p-1 border border-layer" title =" Image" @click =" $emit('image')" >
86
- <Icon name =" FormatImage" />
86
+ <Icon name =" FormatImage" size = " 1.5rem " />
87
87
</CoreButton >
88
88
<CoreButton v-if =" upload" class =" p-1 border border-layer" title =" Upload" @click =" triggerUpload" >
89
- <Icon name =" FormatUpload" />
89
+ <Icon name =" FormatUpload" size = " 1.5rem " />
90
90
<input ref =" fileInput" class =" hidden" type =" file" @change =" $emit('upload', $event)" >
91
91
</CoreButton >
92
92
</div >
0 commit comments