feat: added checkbox formatting

This commit is contained in:
Leyla Becker 2026-02-12 21:39:30 -06:00
parent 623893002c
commit a6ce214130
4 changed files with 41 additions and 1 deletions

View file

@ -180,6 +180,35 @@ a {
background: none;
}
/* Task lists (checkboxes) */
.post-content ul.contains-task-list {
list-style: none;
padding-left: 0;
}
.post-content .task-list-item {
display: flex;
align-items: flex-start;
gap: 0.5rem;
margin-bottom: 0.25rem;
}
.post-content .task-list-item-checkbox {
margin-top: 0.35rem;
width: 1rem;
height: 1rem;
accent-color: var(--secondary-color);
}
.post-content .task-list-item > label {
flex: 1;
}
/* Nested task lists */
.post-content .task-list-item ul.contains-task-list {
margin-top: 0.25rem;
}
/* Lists in post content */
.post-content ul,
.post-content ol {