Style changes, dark background color and fix margin issue in md files

3527fab110414e20059c7c07060856d07405f74f

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

Style changes, dark background color and fix margin issue in md files

Having a class called "blockquote" is a problem because prism applies
a class called blockquote when syntax highlighting markdown files.
scss/design-board.scss:27
Before
26
27
28


29
30
$border-color: $lightblue;
$border-width: 2px;

⁣
⁣
@import "../node_modules/bootstrap/scss/bootstrap";

.list-group {
After
26
27
28
29
30
31
32
$border-color: $lightblue;
$border-width: 2px;

$body-bg-dark: #060c2b;

@import "../node_modules/bootstrap/scss/bootstrap";

.list-group {
vendor/main.css:4
Before
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
code {
  white-space: pre;
}
blockquote {
  margin-left: 0.25rem;
  padding-left: 0.5rem;
  border-left: 3px solid royalblue;
  background: rgba(125, 125, 125, 0.07);
  overflow: hidden;
}
blockquote p {
  margin: 0.5rem;
}
.hunk {
  box-sizing: border-box;
  margin-bottom: 25px;
After
3
4
5










6
7
code {
  white-space: pre;
}
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
.hunk {
  box-sizing: border-box;
  margin-bottom: 25px;