mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-11 14:25:46 +08:00
Hide list bullets in markdown checkboxes (#623)
* Hide list bullets in markdown checkboxes * Align markdown checkboxes with list bullets
This commit is contained in:
parent
aefe8d03c8
commit
5b96abea82
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue