run prettier on all svelte files

This commit is contained in:
Arya 2023-03-30 12:30:36 +05:30
parent b4c8e2131b
commit 9fa9b08eef
Signed by untrusted user: arya
GPG Key ID: 842D12BDA50DF120
14 changed files with 49 additions and 29 deletions

View File

@ -1,6 +1,11 @@
<a <a
href="/" href="/"
class="text-text no-underline flex items-center gap-2"> class="text-text no-underline flex items-center gap-2"
<img src="/logo.png" alt="Project Segfault logo" class="w-7"> >
<img
src="/logo.png"
alt="Project Segfault logo"
class="w-7"
/>
Project Segfault</a Project Segfault</a
> >

View File

@ -16,7 +16,7 @@
text: "Wiki", text: "Wiki",
external: true external: true
}, },
{ href: "/blog", text: "Blog"}, { href: "/blog", text: "Blog" },
{ {
href: "https://status.projectsegfau.lt/", href: "https://status.projectsegfau.lt/",
text: "Status", text: "Status",

View File

@ -6,9 +6,7 @@
{#if address} {#if address}
<details class="p-0"> <details class="p-0">
<summary>Address</summary> <summary>Address</summary>
<code class="break-words whitespace-normal" <code class="break-words whitespace-normal">{address}</code>
>{address}</code
>
</details> </details>
{/if} {/if}

View File

@ -37,7 +37,12 @@
{#if !data.users.error} {#if !data.users.error}
{#if data.users.users.some(isOnline)} {#if data.users.users.some(isOnline)}
<p class="my-4">There {onlineUserCount === 1 ? "is" : "are"} {onlineUserCount} {onlineUserCount === 1 ? "user" : "users"} online out of {userCount} users.</p> <p class="my-4">
There {onlineUserCount === 1 ? "is" : "are"}
{onlineUserCount}
{onlineUserCount === 1 ? "user" : "users"} online out of {userCount}
users.
</p>
<div class="flex flex-row flex-wrap gap-4"> <div class="flex flex-row flex-wrap gap-4">
{#each data.users.users as user} {#each data.users.users as user}
{#if user.online} {#if user.online}

View File

@ -53,11 +53,15 @@
{/if} {/if}
{#if user.matrix} {#if user.matrix}
<a href="https://matrix.to/#/{user.matrix}"><div class="i-simple-icons:matrix" /></a> <a href="https://matrix.to/#/{user.matrix}"
><div class="i-simple-icons:matrix" /></a
>
{/if} {/if}
{#if user.fediverse} {#if user.fediverse}
<a href="https://{user.fediverse}"><div class="i-simple-icons:mastodon" /></a> <a href="https://{user.fediverse}"
><div class="i-simple-icons:mastodon" /></a
>
{/if} {/if}
{#if user.website} {#if user.website}

View File

@ -31,7 +31,12 @@
</div> </div>
<div> <div>
<label for="ssh"><a href="https://wiki.projectsegfau.lt/index.php?title=Generating_an_SSH_key">SSH public key</a></label> <label for="ssh"
><a
href="https://wiki.projectsegfau.lt/index.php?title=Generating_an_SSH_key"
>SSH public key</a
></label
>
<textarea <textarea
name="ssh" name="ssh"
placeholder="[...]" placeholder="[...]"
@ -51,7 +56,9 @@
<button <button
type="submit" type="submit"
class="transition-filter duration-200 hover:brightness-75" class="transition-filter duration-200 hover:brightness-75"
>Submit registration <div class="i-ic:outline-arrow-circle-right" /></button >Submit registration <div
class="i-ic:outline-arrow-circle-right"
/></button
> >
</form> </form>

View File

@ -9,7 +9,9 @@
{#if !data.users.error} {#if !data.users.error}
{#if data.users.users.length > 0} {#if data.users.users.length > 0}
<p class="my-4">There are {data.users.users.length} users on the pubnix.</p> <p class="my-4">
There are {data.users.users.length} users on the pubnix.
</p>
<div class="flex flex-row flex-wrap gap-4"> <div class="flex flex-row flex-wrap gap-4">
{#each data.users.users as user} {#each data.users.users as user}
<User {user} /> <User {user} />

View File

@ -32,8 +32,7 @@
{/if} {/if}
{#if member.xmpp} {#if member.xmpp}
<a href={member.xmpp} <a href={member.xmpp}><div class="i-simple-icons:xmpp" /></a
><div class="i-simple-icons:xmpp" /></a
> >
{/if} {/if}