feat: Lint fixes, add forgejo workflow and e2e tests
Some checks failed
/ check-changes (push) Successful in 7s
/ build (push) Failing after 1m18s

This commit is contained in:
Djuri 2025-05-03 18:45:32 +02:00
parent af2f593fb8
commit 5917713b0d
Signed by: djuri
GPG key ID: 61B9B2DDE5AA3AC1
39 changed files with 1666 additions and 1506 deletions

View file

@ -1,16 +1,12 @@
<script lang="ts">
let {
title,
className = "",
...restProps
} = $props();
let { title, className = '', ...restProps } = $props();
</script>
<div class="card bg-base-100 shadow-xl w-full {className}" {...restProps}>
<div class="card-body">
{#if title}
<h2 class="card-title">{title}</h2>
{/if}
<slot />
</div>
</div>
<div class="card bg-base-100 w-full shadow-xl {className}" {...restProps}>
<div class="card-body">
{#if title}
<h2 class="card-title">{title}</h2>
{/if}
<slot />
</div>
</div>