Hide list bullets in markdown checkboxes (#623)

* Hide list bullets in markdown checkboxes

* Align markdown checkboxes with list bullets
This commit is contained in:
Pete Jodo 2021-10-20 08:09:50 -04:00 committed by GitHub
parent aefe8d03c8
commit 5b96abea82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,15 @@
list-style-type: square;
}
.markdown .task-list-item {
list-style-type: none;
}
.markdown .task-list-item input[type="checkbox"] {
margin-left: -1.1rem;
vertical-align: middle;
}
.markdown ul > li,
.markdown ol > li {
@apply my-1;