.vectorNum {
  width: 5ch;
}

.gridWrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  grid-template-rows: repeat(4, minmax(80px, 1fr));
  grid-gap: 0px;
  height: 100vh;
}
.displayPanel {
  grid-column: 1 / span 3;
  grid-row: 1 / span 3;
  display: block;
  min-width: 200px;
  font-size: 0px;
}

#webGLContainer {
  min-width: 100%;
  min-height: 100%;
}