diff --git a/webui/src/components/basic/ab-add.vue b/webui/src/components/basic/ab-add.vue
index 777313f54..fd0bd545d 100644
--- a/webui/src/components/basic/ab-add.vue
+++ b/webui/src/components/basic/ab-add.vue
@@ -15,29 +15,29 @@ defineEmits(['click']);
const buttonSize = computed(() => {
switch (props.type) {
case 'large':
- return 'wh-36px';
+ return 'wh-36';
case 'medium':
- return 'wh-24px';
+ return 'wh-24';
case 'small':
- return 'wh-12px';
+ return 'wh-12';
}
});
const lineSize = computed(() => {
switch (props.type) {
case 'large':
- return 'w-18px h-4px';
+ return 'w-18 h-4';
case 'medium':
- return 'w-3px h-12px';
+ return 'w-3 h-12';
case 'small':
- return 'w-2px h-6px';
+ return 'w-2 h-6';
}
});