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
10 changes: 9 additions & 1 deletion changelog.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
// Version tracking
export const APP_VERSION = '1.0.25';
export const APP_VERSION = '1.0.26';

export const CHANGELOG = {
'1.0.26': {
date: '2026-02-03',
changes: {
improvements: [
'Timer display now uses monospaced font (Azeret Mono) so the time does not shift horizontally as digits change',
],
},
},
'1.0.25': {
date: '2026-02-03',
changes: {
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap"
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Azeret+Mono:wght@600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
Expand Down
5 changes: 2 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,8 @@ h1 {

.timer-display .time {
font-size: min(15vw, 11rem);
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont,
'Segoe UI Condensed', 'Segoe UI', Roboto, sans-serif;
font-weight: 700;
font-family: 'Azeret Mono', ui-monospace, 'Cascadia Mono', monospace;
font-weight: 600;
color: var(--colour-gold);
font-variant-numeric: tabular-nums;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 175, 55, 0.15);
Expand Down