Merge "Unify `ul` bullet styling"

This commit is contained in:
jenkins-bot 2019-04-30 21:40:28 +00:00 committed by Gerrit Code Review
commit 8be193a1dd
1 changed files with 3 additions and 3 deletions

View File

@ -4,14 +4,14 @@
} }
ul { ul {
list-style-type: square; list-style-type: disc;
padding-left: 1em; padding-left: 1em;
& > li > ul { & > li > ul {
list-style-type: disc; list-style-type: circle;
& > li > ul { & > li > ul {
list-style-type: circle; list-style-type: square;
} }
} }
} }