Commit d624319f180f52f1ee8b39ebf342fef5e73ab43e
1 parent
3ed9be76
perf: adjust action button group line hight
Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -191,19 +191,19 @@ |
191 | 191 | </div> |
192 | 192 | <div class="flex justify-center gap-3 w-24"> |
193 | 193 | <Tooltip title="复制"> |
194 | - <CopyOutlined @click="handleCopy(item)" class="cursor-pointer text-lg !leading-52px" /> | |
194 | + <CopyOutlined @click="handleCopy(item)" class="cursor-pointer text-lg !leading-32px" /> | |
195 | 195 | </Tooltip> |
196 | 196 | <Tooltip title="设置"> |
197 | 197 | <SettingOutlined |
198 | 198 | v-show="showSettingButton" |
199 | 199 | @click="handleSetting(item)" |
200 | - class="cursor-pointer text-lg !leading-52px" | |
200 | + class="cursor-pointer text-lg !leading-32px" | |
201 | 201 | /> |
202 | 202 | </Tooltip> |
203 | 203 | <Tooltip title="删除"> |
204 | 204 | <DeleteOutlined |
205 | 205 | @click="handleDelete(item)" |
206 | - class="cursor-pointer text-lg !leading-52px" | |
206 | + class="cursor-pointer text-lg !leading-32px" | |
207 | 207 | /> |
208 | 208 | </Tooltip> |
209 | 209 | </div> | ... | ... |