Skip to content

Commit

Permalink
Fix: markdown ul and ol css overrides (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanDeMicco authored Feb 14, 2018
1 parent 8f823e0 commit 822a98c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/lib/viewers/text/Text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,17 @@
}

/* Override Box UI */
ol,
ul {
list-style: initial;
list-style: disc;
}

ol {
list-style: decimal;
}

ol ul,
ul ul {
list-style: circle;
}
}

Expand Down

0 comments on commit 822a98c

Please sign in to comment.