Skip to content

Commit

Permalink
when we have an li element inside a list in a markdown container that…
Browse files Browse the repository at this point in the history
… is the 'only-child', as in there are no other li elements, hide the bullet
  • Loading branch information
jrchudy committed Apr 11, 2019
1 parent 5613fc1 commit 79023a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,9 @@ th.multi-select-width {
.markdown-container li {
list-style-type: inherit;
}
.markdown-container li:only-child {
list-style-type: none;
}
.markdown-container ul {
list-style-type: disc;
}
Expand Down

0 comments on commit 79023a1

Please sign in to comment.