use built in vite preprocess, svelte coloured icon

This commit is contained in:
Akis 2023-01-05 21:46:52 +02:00
parent 43d046a519
commit 3113df2fa9
Signed by untrusted user: akis
GPG Key ID: 267BF5C6677944ED
5 changed files with 5 additions and 8 deletions

View File

@ -25,7 +25,6 @@
"svelte-check": "^3.0.1",
"svelte-dark-mode": "^2.1.0",
"svelte-hcaptcha": "^0.1.1",
"svelte-preprocess": "^5.0.0",
"svelte-seo": "^1.4.1",
"svelte-vertical-timeline": "^0.0.2",
"tslib": "^2.4.1",

View File

@ -22,7 +22,6 @@ specifiers:
svelte-check: ^3.0.1
svelte-dark-mode: ^2.1.0
svelte-hcaptcha: ^0.1.1
svelte-preprocess: ^5.0.0
svelte-seo: ^1.4.1
svelte-vertical-timeline: ^0.0.2
tslib: ^2.4.1
@ -54,7 +53,6 @@ devDependencies:
svelte-check: 3.0.1_svelte@3.55.0
svelte-dark-mode: 2.1.0
svelte-hcaptcha: 0.1.1
svelte-preprocess: 5.0.0_niwyv7xychq2ag6arq5eqxbomm
svelte-seo: 1.4.1_typescript@4.9.4
svelte-vertical-timeline: 0.0.2
tslib: 2.4.1

View File

@ -2,7 +2,7 @@
<div
class="flex flex-col justify-center sm:flex-row gap-1 border-t border-t-solid border-t-grey p-3 text-sm"
>
<span class="flex flex-row items-center gap-1">Made with <div class="i-simple-icons:svelte" />SvelteKit <span class="hidden sm:block">-</span></span>
<span class="flex flex-row items-center gap-1">Made with <div class="i-simple-icons:svelte text-[#FF3E00]" />SvelteKit <span class="hidden sm:block">-</span></span>
<a href="https://github.com/ProjectSegfault/website">Source code</a>
</div>
</footer>

View File

@ -137,11 +137,11 @@
}
.icon > span {
@apply flex nav\:hidden;
@apply flex text-sm nav\:hidden;
}
.icon {
@apply flex flex-row items-center gap-2;
@apply flex flex-row items-center gap-2 text-base;
}
.hasJS {

View File

@ -1,5 +1,5 @@
import adapter from "@sveltejs/adapter-node";
import preprocess from "svelte-preprocess";
import { vitePreprocess } from "@sveltejs/kit/vite";
import { mdsvex } from "mdsvex";
/** @type {import('@sveltejs/kit').Config} */
@ -9,7 +9,7 @@ const config = {
extensions: [".svelte", ".md"],
preprocess: [
preprocess(),
vitePreprocess(),
mdsvex({
extensions: [".md"]
})