diff --git a/src/comp/comment.svelte b/src/comp/comment.svelte index 6b9c212..f97b5ac 100644 --- a/src/comp/comment.svelte +++ b/src/comp/comment.svelte @@ -93,7 +93,7 @@
{#each tags as tag} - {tag} + {tag} {/each} {#if replyTo} diff --git a/src/comp/entry/entryform.svelte b/src/comp/entry/entryform.svelte index c71f921..43ffb10 100644 --- a/src/comp/entry/entryform.svelte +++ b/src/comp/entry/entryform.svelte @@ -59,7 +59,7 @@
{dispatch('submit', e);}} {...$$restProps}>
-

{formName}

+

{formName}

diff --git a/src/comp/page/post.svelte b/src/comp/page/post.svelte index dd786c3..fa803c3 100644 --- a/src/comp/page/post.svelte +++ b/src/comp/page/post.svelte @@ -128,7 +128,7 @@
-

{post.name}

+

{post.name}

diff --git a/src/routes/(app)/+layout.server.js b/src/routes/(app)/+layout.server.js index 846dc96..9758501 100644 --- a/src/routes/(app)/+layout.server.js +++ b/src/routes/(app)/+layout.server.js @@ -1,8 +1,8 @@ import { getCategories } from "$lib/server/db/category"; /** @type {import("@sveltejs/kit").ServerLoad} */ -export async function load({ locals }) { - const categories = await getCategories(locals.sql); +export async function load() { + const categories = await getCategories(); return { categories: categories diff --git a/src/routes/(login)/+layout.svelte b/src/routes/(login)/+layout.svelte index 94fbe1a..a359982 100644 --- a/src/routes/(login)/+layout.svelte +++ b/src/routes/(login)/+layout.svelte @@ -1,10 +1,20 @@
-

Welcome to Echo

+

Welcome to Echo

Currently suppored link: /posts

diff --git a/static/css/base.scss b/static/css/base.scss index f7293b2..e2d8373 100644 --- a/static/css/base.scss +++ b/static/css/base.scss @@ -3,7 +3,7 @@ --background: #111118; - --accent-gray: #8298b1; + --accent-gray: #b182a3; --accent-light: #9e8afa; --accent: #846bf7; diff --git a/static/css/font.scss b/static/css/font.scss index 01ba156..d7bd5d5 100644 --- a/static/css/font.scss +++ b/static/css/font.scss @@ -11,7 +11,7 @@ } .lt-afficher-neue-400, -.typeTitle { +.typeHead { font-family: "LT Afficher Neue", serif; font-weight: 400; font-style: normal; @@ -47,7 +47,8 @@ font-style: normal; } -.taviraj-light { +.taviraj-light, +.typeTitle { font-family: "Taviraj", serif; font-weight: 300; font-style: normal; @@ -168,7 +169,7 @@ } .cinzel-decorative-regular, -.typeHead { +.typeDisplay { font-family: "Cinzel Decorative", serif; font-weight: 400; font-style: normal; diff --git a/static/css/form.scss b/static/css/form.scss index b5cb3fb..4390c80 100644 --- a/static/css/form.scss +++ b/static/css/form.scss @@ -7,7 +7,7 @@ form.entryForm { padding: 32px; background: #00000090; border-radius: 16px; - /* backdrop-filter: blur(28px); */ + backdrop-filter: blur(16px); max-width: 350px; width: calc(20dvw + 150px);