fix: break device name line on small screens

This commit is contained in:
seriousm4x
2023-08-19 00:17:37 +02:00
parent 109f374269
commit 84deb379e7

View File

@@ -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">