From 632850b8d589791f14ffb07956e334c710fb4f10 Mon Sep 17 00:00:00 2001 From: 7222e800-c703-472d-a787-71b6b5cba4ef Date: Sun, 14 Sep 2025 17:27:51 +0000 Subject: draft: initial work --- src/lib/Itinerary.svelte | 36 ++++++++++++++++++++++++++++++++++++ src/lib/index.ts | 1 + 2 files changed, 37 insertions(+) create mode 100644 src/lib/Itinerary.svelte (limited to 'src/lib') diff --git a/src/lib/Itinerary.svelte b/src/lib/Itinerary.svelte new file mode 100644 index 0000000..fb30d1b --- /dev/null +++ b/src/lib/Itinerary.svelte @@ -0,0 +1,36 @@ + + + + {#if itinerary && legs && firstLeg && lastLeg} + + + + + + + + + {/if} + + +
+ {#each legs ?? [] as leg} +
+ {JSON.stringify(leg)} +
+ {/each} +
diff --git a/src/lib/index.ts b/src/lib/index.ts index a961354..cc6c448 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -43,6 +43,7 @@ export const S = { }, input: 'transition-all bg-[#2E2E32] not-disabled:not-focus:not-active:hover:bg-[#dedede11] p-2 outline-2 outline-[#0000] not-disabled:focus:outline-[#4C82C999]' as const, + title: 'p-2 outline-2 outline-[#0000]' as const, heading: [ // 'text-2xl font-bold', -- cgit v1.2.3