about page

This commit is contained in:
vcoppe
2024-07-05 16:08:16 +02:00
parent 9edcc5b55b
commit cb735db216
27 changed files with 44025 additions and 167 deletions

View File

@@ -15,7 +15,7 @@
</script>
{#if module !== undefined}
<div class="markdown">
<div class="markdown space-y-3">
<svelte:component this={module} />
</div>
{/if}
@@ -26,13 +26,13 @@
:global(.markdown h1) {
@apply text-3xl;
@apply font-bold;
@apply mb-3;
@apply font-semibold;
@apply mb-6;
}
:global(.markdown h2) {
@apply text-2xl;
@apply font-bold;
@apply font-semibold;
@apply mb-3;
}
@@ -41,6 +41,11 @@
@apply hover:underline;
}
:global(.markdown p > a) {
@apply text-blue-500;
@apply hover:underline;
}
:global(.markdown ul) {
@apply list-disc;
@apply pl-4;