Remove padding for center and left aligned lists.

This commit is contained in:
Michael Cain 2019-12-19 14:37:33 -05:00
parent afb6eaf851
commit 21b3ab9162
No known key found for this signature in database
GPG key ID: D64841E97D91690F
2 changed files with 4 additions and 0 deletions

View file

@ -6,11 +6,13 @@ ol {
// Utility classes
&.aligncenter {
list-style-position: inside;
padding: 0;
}
&.alignright {
list-style-position: inside;
text-align: right;
padding: 0;
}
}

View file

@ -7,11 +7,13 @@ ol {
// Utility classes
&.aligncenter {
list-style-position: inside;
padding: 0;
}
&.alignright {
list-style-position: inside;
text-align: right;
padding: 0;
}
}