all repos — legit @ bf654749b4fa39c80daa14d37496e8825fef5c09

Unnamed repository; edit this file 'description' to name the repository.

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
commit

bf654749b4fa39c80daa14d37496e8825fef5c09

parent

396548546ed56088cc837080fe44a963199ed7ff

2 files changed, 15 insertions(+), 0 deletions(-)

jump to
M CHANGELOG.mdCHANGELOG.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.cssstatic/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); }