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
href="/"
class="text-text no-underline flex items-center gap-2">
<img src="/logo.png" alt="Project Segfault logo" class="w-7">
class="text-text no-underline flex items-center gap-2"
>
<img
src="/logo.png"
alt="Project Segfault logo"
class="w-7"
/>
Project Segfault</a
>

View File

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

View File

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

View File

@ -37,7 +37,12 @@
{#if !data.users.error}
{#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">
{#each data.users.users as user}
{#if user.online}

View File

@ -53,11 +53,15 @@
{/if}
{#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 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 user.website}

View File

@ -31,7 +31,12 @@
</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
name="ssh"
placeholder="[...]"
@ -51,7 +56,9 @@
<button
type="submit"
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>

View File

@ -9,7 +9,9 @@
{#if !data.users.error}
{#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">
{#each data.users.users as user}
<User {user} />

View File

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