Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,15 @@ body {
}

/* --- Groups --- */
/* Only BETWEEN groups, never after the last one: a trailing margin would pad the
bottom of every panel, including the single-group tabs. `--space-5` is the same
gap `.next-card` puts below itself, so Next → Overdue → Today share one rhythm.
Groups render flush without this — `.group__list` has `margin: 0` and
`.group__heading` has no top margin, so the Today heading sat on the Overdue
list's bottom border. */
.group + .group {
margin-top: var(--space-5);
}
.group__heading {
display: flex;
align-items: baseline;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ignite",
"version": "0.4.0",
"version": "0.5.0",
"private": true,
"description": "A small flame, kept going — an ADHD-friendly, open-source task app.",
"type": "module",
Expand Down
Loading