Files
livecodingfr/src/lib/Calendar.svelte

29 lines
756 B
Svelte

<script lang="ts">
export let date: string;
export let title: string;
export let description: string;
let realDate = date.split(" ");
</script>
<div class="flex flex-row">
<div
class="w-42 block rounded-t overflow-hidden bg-white text-center min-w-max"
>
<div class="bg-red-800 text-white py-1">{realDate[1]}</div>
<div class="pt-1 border-l border-r">
<span class="text-4xl font-bold">{realDate[0]}</span>
</div>
<div
class="pb-2 px-2 border-l border-r border-b rounded-b flex justify-between"
>
<span class="text-xs font-bold">{realDate[2]}</span>
</div>
</div>
<!-- Info -->
<div class="block">
<h3 class="pl-4 flex">{title}</h3>
<p class="pl-4">{description}</p>
</div>
</div>