Set padding to 0 in code diffs

ba94bc4836686c3016c651f4130a8038054179a2

Tucker McKnight <tucker@pangolin.lan> | Sun Mar 01 2026

Set padding to 0 in code diffs

This was being set by bootstrap's _reboot.scss, which we don't want
in this case. It was adding a slight indentation to the first line in
a diff.
scss/design-board.scss:266
Before
265
266
267




268
269
  min-height: 2rem;
}

⁣
⁣
⁣
⁣
/* commits list page */
.commit-hash {
  word-break: break-all; /* for mobile widths, allow SHA to wrap */
After
265
266
267
268
269
270
271
272
273
  min-height: 2rem;
}

code mark {
  padding: 0
}

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