Skip to content

Commit d874a16

Browse files
committed
Prevent the link field group from exceeding 50% of the container so things are more balanced
1 parent 4b7086e commit d874a16

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

resources/js/components/blueprints/LinkFields.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
@update:modelValue="reference = $event"
2525
>
2626
<template #option="option">
27-
<div class="flex items-center text-start">
27+
<div class="flex items-center text-start w-full">
2828
<span
2929
v-text="option.fieldset"
30-
class="text-2xs line-clamp-2 text-gray-500 dark:text-gray-300 ltr:mr-2 rtl:ml-2"
30+
class="text-2xs line-clamp-2 text-gray-500 dark:text-gray-300 ltr:mr-2 rtl:ml-2 max-w-[50%]"
3131
/>
3232
<span class="text-xs line-clamp-2" v-text="option.label" />
3333
</div>

0 commit comments

Comments
 (0)