Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ui/src/Checkbox/Item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const conditionalProps = computed(() => {
</span>
</CheckboxRoot>
<div class="flex flex-col" v-if="!solo">
<label class="text-sm font-normal antialiased" :for="id">
<label class="text-sm font-normal antialiased dark:text-gray-200" :for="id">
<slot>{{ label || value }}</slot>
</label>
<p v-if="description" :id="`${id}-description`" class="mt-0.5 block text-xs leading-snug text-gray-500 dark:text-gray-200">{{ description }}</p>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Radio/Item.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const id = useId();
/>
</RadioGroupItem>
<label class="flex flex-col" :class="{ 'opacity-50': disabled }" :for="id">
<span class="text-sm font-normal text-gray-600 antialiased dark:text-gray-200">
<span class="text-sm font-normal antialiased dark:text-gray-200">
<slot>{{ label || value }}</slot>
</span>
<span v-if="description" class="mt-0.5 block text-xs leading-snug text-gray-500">{{ description }}</span>
Expand Down
Loading