Fixed font spec files #511
No reviewers
Labels
No labels
Kestra
bug
enhancement
someday
subtask
☁️ api
🎛️ infrastructure
🐞 sentry
📆 2025 Season
📝 pages
allpicks
📝 pages
picks
📝 pages
standings
🚀 performance
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
johnsturgeon/tgfp-web!511
Loading…
Reference in a new issue
No description provided.
Delete branch "fix-font-spec-files-510"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
This PR corrects three malformed
@font-facedeclarations in the Tailwind source (app/styles/v3.src.css) — quoting thesrcURLs and removing the stray spaces from the Figtreeunicode-rangetokens (U+0000 -00FF→U+0000-00FF) — and checks in the regenerated minifiedv3.css, along with the routine patch version bump. The changes are correct, self-consistent, and low-risk.I verified that the committed
v3.cssmatches what the source would minify to (all three fonts now share the identical, validunicode-range; the previously-broken Figtree range likeU0 -0FFis gone), that the referenced font files (figtree-var-latin.woff2,inter-var-latin.woff2,rock-salt-400-latin.woff2) exist underapp/static/fonts/, and that the version bump is applied consistently in bothpyproject.toml:3anduv.lockper the versioning convention.The change looks good — nothing blocking, and no correctness, performance, or security concerns for a static-asset fix like this.
Nits
app/styles/v3.src.css:46still ends without a trailing newline (the diff shows\ No newline at end of file). Not introduced by this PR and cosmetic, but worth normalizing if you touch the file again.