formatting

This commit is contained in:
nub31
2026-03-17 17:12:45 +01:00
parent 794a0549ab
commit ceb05f4a75
36 changed files with 2535 additions and 2747 deletions

View File

@@ -1,15 +1,8 @@
<script lang="ts">
import { twMerge } from 'tailwind-merge';
export let href: string;
</script>
<a
{...$$restProps}
{href}
class={twMerge(
'font-medium transition-colors hover:text-accent hover:underline',
$$restProps['class']
)}
>
<slot />
</a>
<script lang="ts">
import { twMerge } from "tailwind-merge";
export let href: string;
</script>
<a {...$$restProps} {href} class={twMerge("font-medium transition-colors hover:text-accent hover:underline", $$restProps["class"])}>
<slot />
</a>