fix: add spacing between diff header and pre content Add margin-top to .diff pre to create a visible gap between the filename row (diff-type span, file links) and the diff content.
Maxwell Jensen maxwelljensen@posteo.net
Tue, 12 May 2026 18:44:54 +0200
2 files changed,
15 insertions(+),
0 deletions(-)
M
CHANGELOG.md
→
CHANGELOG.md
@@ -8,6 +8,20 @@ Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] +## [0.2.8] - 2026-05-12 + +### Added + +- Configurable favicon via `meta.favicon` config option, supporting SVG, PNG, + and JPG with automatic MIME type detection from file extension +- Theme toggle in navigation bar with three modes: system (follows OS + preference), light, and dark; preference persisted via cookie + +### Fixed + +- Diff page: added spacing between the filename header row (file type badge, + file links) and the diff `<pre>` content block + ## [0.2.7] - 2026-05-12 ### Added
M
static/style.css
→
static/style.css
@@ -517,6 +517,7 @@ font-size: 0.85rem;
line-height: 1.5; background: var(--light); padding: 1rem; + margin-top: 0.5rem; border-radius: var(--border-radius); }