This commit is contained in:
2025-07-06 17:42:45 +02:00
parent f4db985695
commit 3edaf9b3c8
7 changed files with 1332 additions and 5 deletions

View File

@ -112,6 +112,55 @@
--sidebar-ring: oklch(0.556 0 0);
}
.markdown {
@apply text-base leading-relaxed text-foreground;
}
.markdown h1 {
@apply text-4xl font-bold mt-6 mb-4;
}
.markdown h2 {
@apply text-3xl font-semibold mt-6 mb-3;
}
.markdown h3 {
@apply text-2xl font-medium mt-5 mb-2;
}
.markdown p {
@apply my-4;
}
.markdown ul {
@apply list-disc pl-6 my-4;
}
.markdown ol {
@apply list-decimal pl-6 my-4;
}
.markdown li {
@apply mb-1;
}
.markdown blockquote {
@apply border-l-4 pl-4 italic text-muted-foreground my-4;
}
.markdown code {
@apply bg-muted px-1 py-0.5 rounded font-mono text-sm;
}
.markdown pre {
@apply bg-muted p-4 rounded overflow-x-auto text-sm my-4;
}
.markdown a {
@apply underline text-primary hover:text-primary/80;
}
@layer base {
* {
@apply border-border outline-ring/50;