Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,28 @@ section.prose {
@apply font-geist
}

.prose h1,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
@apply font-normal;
.prose h1 {
@apply text-4xl font-normal break-words;
}

.prose h2 {
@apply text-lg font-medium pb-3 border-b border-b-redis-pen-700 border-opacity-50;
@apply text-2xl font-medium pb-3 border-b border-b-redis-pen-700 border-opacity-50;
}

.prose h3 {
@apply text-xl font-semibold;
}

.prose h4 {
@apply text-lg font-medium;
}

.prose h5 {
@apply text-base font-medium;
}

.prose h6 {
@apply text-sm font-medium;
}

.prose p, .prose ol, .prose ul {
Expand All @@ -47,10 +59,6 @@ section.prose {
@apply bg-none font-monogeist;
}

.prose h1 {
@apply text-4xl break-words;
}

.prose h1[id],
.prose h2[id],
.prose h3[id],
Expand Down