fix(ui): should not use text-nowrap

This commit is contained in:
Neko Ayaka
2026-01-07 20:44:46 +08:00
parent ded5d718de
commit 35ca227fcf
2 changed files with 2 additions and 2 deletions
@@ -37,7 +37,7 @@ watch([inputKey, inputValue], () => {
</slot>
<span v-if="props.required !== false" class="text-red-500">*</span>
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400" text-nowrap>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
<slot name="description">
{{ props.description }}
</slot>
@@ -25,7 +25,7 @@ const modelValue = defineModel<string>({ required: false })
</slot>
<span v-if="props.required !== false" class="text-red-500">*</span>
</div>
<div class="text-xs text-neutral-500 dark:text-neutral-400" text-nowrap>
<div class="text-xs text-neutral-500 dark:text-neutral-400">
<slot name="description">
{{ props.description }}
</slot>