Skip to content

Commit

Permalink
fix: break device name line on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousm4x committed Aug 18, 2023
1 parent 109f374 commit 84deb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/device/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
{#await getDevice()}
<PageLoading />
{:then device}
<h1 class="text-3xl font-bold mb-8">{device.name}</h1>
<h1 class="text-3xl font-bold mb-8 sm:break-all">{device.name}</h1>
<DeviceForm {device} />
{:catch err}
<div class="container max-w-lg mx-auto">
Expand Down

0 comments on commit 84deb37

Please sign in to comment.