Skip to content
Open
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,23 @@ section.prose {
@apply text-base;
}

/* Nested ordered list styling for alphabetic numbering on sublists */
.prose ol {
list-style-type: decimal;
}

.prose ol ol {
list-style-type: lower-alpha;
}

.prose ol ol ol {
list-style-type: lower-roman;
}

.prose ol ol ol ol {
list-style-type: decimal;
}

.prose pre {
@apply bg-slate-900 rounded-lg;
}
Expand Down
Loading
Loading