fix: text wrapping on setup
Some checks are pending
Check / check (push) Waiting to run

This commit is contained in:
ThaUnknown 2025-07-22 22:29:53 +02:00
parent 4084293d46
commit 7ff57561c2
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{
"name": "ui",
"version": "6.4.83",
"version": "6.4.84",
"license": "BUSL-1.1",
"private": true,
"packageManager": "pnpm@9.15.5",

View file

@ -18,11 +18,11 @@
<div class='animate-[hearbeat_1.5s_ease-in-out_infinite_alternate] absolute text-lg text-theme right-0 -top-5 xs:-right-20 xs:-top-2 rotate-12'>Previously known as Miru!</div>
</div>
</div>
<div class='text-muted-foreground pt-3 text-center'>Let's set up your perfect streaming environment.</div>
<div class='flex items-center space-x-2 pt-12 pb-3'>
<div class='text-muted-foreground pt-3 text-center px-3'>Let's set up your perfect streaming environment.</div>
<div class='flex items-center space-x-2 pt-12 pb-3 px-5'>
<Checkbox id='terms' bind:checked data-down='#start-setup' />
<Label for='terms' class='text-md font-medium leading-none text-muted-foreground'>
I agree to the<a use:click={() => native.openURL(`${WEB_URL}/terms`)} class='text-primary underline p-2'>Terms of Service</a>and<a use:click={() => native.openURL(`${WEB_URL}/privacy`)} class='text-primary underline p-2'>Privacy Policy</a>
I agree to the <a use:click={() => native.openURL(`${WEB_URL}/terms`)} class='text-primary underline py-2 px-1'>Terms of Service</a> and <a use:click={() => native.openURL(`${WEB_URL}/privacy`)} class='text-primary underline py-2 px-1'>Privacy Policy</a>
</Label>
</div>
<Button id='start-setup' class='text-lg font-bold shrink-0' disabled={!checked} size='lg' href={checked ? './storage' : undefined} data-sveltekit-replacestate>{!checked ? 'Accept terms to continue' : 'Start Setup'}</Button>