Tucker McKnight <tucker@pangolin.lan> | Sun Jan 11 2026
Make git SHA wrap at small widths on commits page
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('')}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('')}295 296
.btn-outline-primary:hover {
color: $white;
}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 */
}