At the moment, the verification grid uses a flexbox with justify-content: center.
This causes issues as the spacing at the start and end of the grid can differ from between grid tiles.
We should make it so that the spacing between grid tiles and the spacing at the end of the verification grid tile is the same.
Ideally we would use justify-content: space-between, but this can lead to vertical alignment issues with grid sizes that are not a factor of the number of columns.
At the moment, the verification grid uses a flexbox with
justify-content: center
. This causes issues as the spacing at the start and end of the grid can differ from between grid tiles.We should make it so that the spacing between grid tiles and the spacing at the end of the verification grid tile is the same.
Ideally we would use
justify-content: space-between
, but this can lead to vertical alignment issues with grid sizes that are not a factor of the number of columns.