my website at ewancroft.uk
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(profile): add `break-words` so that there is no overflow in the description

+1 -1
+1 -1
src/lib/components/layout/main/card/ProfileCard.svelte
··· 108 108 <p class="font-medium text-ink-700 dark:text-ink-200">@{safeProfile.handle}</p> 109 109 110 110 {#if safeProfile.description} 111 - <p class="mb-4 whitespace-pre-wrap text-ink-700 dark:text-ink-200"> 111 + <p class="mb-4 break-words whitespace-pre-wrap text-ink-700 dark:text-ink-200"> 112 112 {safeProfile.description} 113 113 </p> 114 114 {/if}