Change padding for task lists in notes

This commit is contained in:
Robert Speicher 2015-04-29 20:36:12 -04:00
parent 725ff58bc8
commit 421f3f1551
1 changed files with 10 additions and 0 deletions

View File

@ -62,6 +62,16 @@ ul.notes {
word-wrap: break-word;
@include md-typography;
// Reduce left padding of first ul element
ul.task-list:first-child {
padding-left: 10px;
// sub-lists should be padded normally
ul {
padding-left: 20px;
}
}
hr {
margin: 10px 0;
}