Merge pull request #132 from phagara/fix-blockquote-list-margins-padding

fix margins & padding for blockquotes, lists and nested lists
This commit is contained in:
Brandon Rosage 2019-05-20 15:57:11 -05:00 committed by GitHub
commit dea70a8d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,17 @@
color: #6a737d;
border-left: 2px solid #959da5;
padding-left: 16px;
margin-bottom: 16px;
}
ul, ol {
padding-left: 32px;
margin-bottom: 16px;
}
li ul, li ol {
padding-left: 16px;
margin-bottom: 0px;
}
}