formatting, full migration to svelte-french-toast

This commit is contained in:
2023-04-26 22:47:42 +02:00
parent 38a665024e
commit 46d076af9d
137 changed files with 11984 additions and 9212 deletions

View File

@@ -1,14 +1,13 @@
<script>
import { _ } from "svelte-i18n";
export let href = "#"
export let href = "#";
export let title = "";
export let value = "";
</script>
<a href={href}>
<div
class="p-4 rounded-lg bg-white border border-grey-100">
<a {href}>
<div class="p-4 rounded-lg bg-white border border-grey-100">
<div class="flex flex-row items-center justify-between">
<div class="flex flex-col">
<div class="text-xs uppercase font-light text-grey-500">
@@ -16,7 +15,7 @@
</div>
<div class="text-xl font-bold">{value}</div>
</div>
<slot></slot>
<slot />
</div>
</div>
</a>