Make git SHA wrap at small widths on commits page

8815af28d9035c2ae74c1afdf5b3ae5de16d1804

Tucker McKnight | Sun Jan 11 2026

Make git SHA wrap at small widths on commits page
js_templates/commits.ts:40
Before
40
            <span class="font-monospace">${commit.hash}</span>
After
40
            <p class="commit-hash font-monospace mb-0">${commit.hash}</p>
scss/design-board.scss:296
Before
296
After
296

/* commits list page */
.commit-hash {
  word-break: break-all; /* for mobile widths, allow SHA to wrap */
}