adding tailwind styling for rich text markdown headings

This commit is contained in:
Tassoman 2023-09-20 17:34:33 +00:00 committed by Alex Gleason
parent 84b114a16b
commit eccf23eae3
1 changed files with 12 additions and 0 deletions

View File

@ -2,6 +2,18 @@
@apply whitespace-pre-wrap;
}
[data-markup] h1 {
@apply text-3xl font-semibold;
}
[data-markup] h2 {
@apply text-2xl font-semibold;
}
[data-markup] h3 {
@apply text-xl font-black;
}
[data-markup] p {
@apply mb-4 whitespace-pre-wrap;
}