Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<!-- logo -->
<div class="flex-none">
<a class=" text-xl font-bold text-primary" href={resolve('/')}>
<pre unselectable="on" class="text-[2px]">
<pre unselectable="on" class="font-mono text-[2px] leading-none whitespace-pre">
{LOGO}
<span class="sr-only">10xPrivacy</span>
</pre>
Expand Down
3 changes: 2 additions & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
</script>

<main class="m-auto flex max-w-3xl flex-col items-center px-4 py-8">
<pre class=" text-[5px] text-primary sm:text-[10px] md:text-xs">
<pre
class="font-mono text-[5px] leading-none whitespace-pre text-primary sm:text-[10px] md:text-xs">
{LOGO}
</pre>

Expand Down
4 changes: 3 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const commitHash = (() => {
})();

export default defineConfig({
plugins: [tailwindcss(), sveltekit(), svelteTesting()],
// TODO: Fix this Plugin types from vite and vitest/config are incompatible
// eslint-disable-next-line @typescript-eslint/no-explicit-any
plugins: [tailwindcss(), sveltekit(), svelteTesting() as any],
define: {
__COMMIT_HASH__: JSON.stringify(commitHash)
},
Expand Down
Loading