Skip to content

Commit

Permalink
add word break to email
Browse files Browse the repository at this point in the history
  • Loading branch information
westerandr committed May 9, 2024
1 parent 04fe9f3 commit 7519540
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/components/Contact.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<section class="grid gap-5 mt-8 lg:mt-10 lg:gap-10">
<div class="flex gap-5">
<IconMailFilled />
<span class="break-normal">[email protected]</span>
<span class="sch-email">[email protected]</span>
</div>
<div class="flex gap-5">
<IconMapPinFilled />
Expand Down Expand Up @@ -183,3 +183,9 @@
</form>
</div>
</section>

<style>
.sch-email {
word-break: break-word;
}
</style>

0 comments on commit 7519540

Please sign in to comment.