Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

fix margins & padding for blockquotes, lists and nested lists #132

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions assets/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down