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

@ -8,19 +8,19 @@
href="/instances"
class="button"
><div class="i-ic:outline-computer" />
Instances</a
Instances</a
>
<a
href="/donate"
class="button !bg-amber !text-black"
><div class="i-ic:outline-attach-money" />
Donate</a
Donate</a
>
<a
href="/pubnix"
class="button !bg-purple"
><div class="i-simple-icons:linux" />
Pubnix</a
Pubnix</a
>
</div>
</div>

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

@ -17,19 +17,19 @@
href="/blog/tags"
class="button sm:w-fit"
><div class="i-ic:outline-bookmarks" />
Tags</a
Tags</a
>
<a
href="/blog/authors"
class="button sm:w-fit"
><div class="i-ic:outline-people text-xl" />
Authors</a
Authors</a
>
<a
href="https://blog.projectsegfau.lt/rss"
class="button sm:w-fit !bg-[#ee802f]"
><div class="i-simple-icons:rss" />
RSS</a
RSS</a
>
</div>

View File

@ -29,7 +29,7 @@
href="https://liberapay.com/ProjectSegfault/donate"
class="button !bg-amber !text-black w-fit"
><div class="i-simple-icons:liberapay" />
Liberapay</a
Liberapay</a
>
<h3>Cryptocurrencies</h3>

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

@ -10,7 +10,7 @@
href="/instances/advanced"
class="button sm:w-fit"
><div class="i-ic:outline-computer" />
Advanced</a
Advanced</a
>
</div>

View File

@ -10,7 +10,7 @@
href="/instances"
class="button sm:w-fit"
><div class="i-ic:outline-computer" />
Simple</a
Simple</a
>
</div>

View File

@ -23,7 +23,7 @@
on:click={() => signOut()}
class={buttonStyles}
><div class="i-ic:outline-logout" />
Sign out</button
Sign out</button
>
</div>
{:else}
@ -33,7 +33,7 @@
on:click={() => signIn("authentik")}
class={buttonStyles}
><div class="i-ic:outline-login" />
Sign in using Authentik</button
Sign in using Authentik</button
>
</div>
{/if}

View File

@ -17,19 +17,19 @@
href="/pubnix/register"
class="button sm:w-fit"
><div class="i-ic:outline-plus" />
Register</a
Register</a
>
<a
href="/pubnix/users"
class="button sm:w-fit"
><div class="i-ic:outline-people" />
Users</a
Users</a
>
<a
href="/pubnix/faq"
class="button sm:w-fit"
><div class="i-ic:outline-question-mark" />
FAQ</a
FAQ</a
>
</div>
@ -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>
@ -67,4 +74,4 @@
form > button {
@apply w-110 lt-sm\:w-70 px-2 py-1 bg-secondary rounded flex items-center gap-2 text-lg;
}
</style>
</style>

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}