add some old changes that I didn't commit earlier

b468f8dcada6d14624a716d4ee62677a2e9258e6

Tucker McKnight <tucker@pangolin.lan> | Wed Mar 04 2026

add some old changes that I didn't commit earlier
README.md:9
Before
8
9
10
- [index2.html](demo/index2.html)
  - A slightly different color scheme
- [design-board.html](demo/design-board.html)
  - Different idea for the default template, which eventually became what I went with
After
8
9
10
- [index2.html](demo/index2.html)
  - A slightly different color scheme
- [design-board.html](demo/design-board.html)
  - Different idea for the default template's look, which eventually became what I went with
scss/design-board.scss:107
Before
106
107
108
109
110
111
112
113
114
  color: $lightblue;
}

.navbar-nav .nav-link.active {
  background-color: $lightblue;
  color: white;
}

.sample-bullet {
  display: inline-block;
After
106
107
108
109
110
111
112
113
114
  color: $lightblue;
}

// .navbar-nav .nav-link.active {
//   background-color: $lightblue;
//   color: white;
// }

.sample-bullet {
  display: inline-block;
scss/design-board.scss:118
Before
117
118








  height: 1rem;
  width: 1rem;
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
}
After
117
118
119
120
121
122
123
124
125
126
127
  height: 1rem;
  width: 1rem;
}

.nav-link::before {
  content: '[ '
}

.nav-link::after {
  content: ' ]'
}