diff --git a/src/app.pcss b/src/app.pcss index 77319c1..a46d9f4 100644 --- a/src/app.pcss +++ b/src/app.pcss @@ -33,7 +33,6 @@ button { .card2 { @apply bg-base-200; @apply rounded-xl; - @apply mb-8; @apply flex flex-col; @apply border-solid border-base-content/30 border-[1px]; @@ -51,10 +50,14 @@ button { } .c-light { - @apply bg-base-content/20; + @apply bg-base-content/20 py-1; + } + + .c-vlight { + @apply bg-base-content/10 py-1; } .c-primary { - @apply bg-primary text-primary-content; + @apply bg-primary text-primary-content py-1; } } diff --git a/src/lib/components/ui/Header.svelte b/src/lib/components/ui/Header.svelte index 9b9db35..99e6062 100644 --- a/src/lib/components/ui/Header.svelte +++ b/src/lib/components/ui/Header.svelte @@ -7,7 +7,7 @@ export let backHref: string | undefined = undefined; -
+ Erstellt {humanDate(data.entry.created_at, true)} + · + Zu erledigen {humanDate(data.entry.current_version.date)} +
+
Erledigt am {formatDate(data.entry.execution.created_at, true)} von
diff --git a/src/routes/(app)/entry/[id]/executions/+page.svelte b/src/routes/(app)/entry/[id]/executions/+page.svelte
new file mode 100644
index 0000000..1001441
--- /dev/null
+++ b/src/routes/(app)/entry/[id]/executions/+page.svelte
@@ -0,0 +1,45 @@
+
+
+