Make git SHA wrap at small widths on commits page

8815af28d9035c2ae74c1afdf5b3ae5de16d1804

Tucker McKnight <tucker@pangolin.lan> | Sun Jan 11 2026

Make git SHA wrap at small widths on commits page
js_templates/commits.ts:40
Before
39
40
41
42
43
44
            <span>${date(commit.date)}</span>
            <br />
            <span>${commit.author}</span>
            <span class="font-monospace">${commit.hash}</span>
          </div>
        `
      }).join('')}
After
39
40
41
42
43
44
            <span>${date(commit.date)}</span>
            <br />
            <span>${commit.author}</span>
            <p class="commit-hash font-monospace mb-0">${commit.hash}</p>
          </div>
        `
      }).join('')}
scss/design-board.scss:296
Before
295
296




.btn-outline-primary:hover {
  color: $white;
⁣
⁣
⁣
⁣
⁣
}
After
295
296
297
298
299
300
301
.btn-outline-primary:hover {
  color: $white;
}

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