Spot the bug - #141: Potion Shelf Grid

Why is my potion shelf grid collapsing into one row?

.potion-shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 12px;
  column-count: 3;
}

Reply with what is broken and how you would fix it.