about page progress

This commit is contained in:
vcoppe
2024-07-05 01:02:53 +02:00
parent a2ea966d35
commit 9edcc5b55b
23 changed files with 397 additions and 158 deletions

View File

@@ -15,5 +15,38 @@
</script>
{#if module !== undefined}
<svelte:component this={module} />
<div class="markdown">
<svelte:component this={module} />
</div>
{/if}
<style lang="postcss">
:global(.markdown) {
}
:global(.markdown h1) {
@apply text-3xl;
@apply font-bold;
@apply mb-3;
}
:global(.markdown h2) {
@apply text-2xl;
@apply font-bold;
@apply mb-3;
}
:global(.markdown p > a) {
@apply text-blue-500;
@apply hover:underline;
}
:global(.markdown ul) {
@apply list-disc;
@apply pl-4;
}
:global(.markdown hr) {
@apply my-5;
}
</style>