15 lines
216 B
CSS
15 lines
216 B
CSS
.gameboard {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.gameboard-title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.gameboard-row {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
width: 90vw;
|
|
justify-content: center;
|
|
} |