Skip to content

Commit

Permalink
Merge pull request #605 from nature-of-code/nested-list-style
Browse files Browse the repository at this point in the history
Enhanced Nested List Styles
  • Loading branch information
jasongao97 authored Dec 25, 2023
2 parents 2d6b641 + 4d33cc4 commit f8290b4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions magicbook/stylesheets/components/typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,22 @@ ul {
}
}

ol > li > ol {
list-style-type: lower-alpha;

> li > ol {
list-style-type: lower-roman;
}
}

ul > li > ul {
list-style-type: circle;

> li > ul {
list-style-type: square;
}
}

figure {
margin-top: 12pt;
margin-bottom: 12pt;
Expand Down

0 comments on commit f8290b4

Please sign in to comment.