fix: word wrap on custom link preview (#23942)
Word break fix in create link Adds the "break-all" tailwind style to the slug text under the custom link text boxpull/22227/head^2
parent
1086f22166
commit
af22f9b014
|
|
@ -68,7 +68,7 @@
|
|||
<Input bind:value={slug} autocomplete="off" />
|
||||
</Field>
|
||||
{#if slug}
|
||||
<Text size="tiny" color="muted" class="pt-2">/s/{encodeURIComponent(slug)}</Text>
|
||||
<Text size="tiny" color="muted" class="pt-2 break-all">/s/{encodeURIComponent(slug)}</Text>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue