15 lines
213 B
CSS
15 lines
213 B
CSS
|
|
#game-list {
|
|
justify-content: flex-start;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
#game-list .game-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 160px;
|
|
width: 160px;
|
|
margin: 10px;
|
|
border-radius: 5%;
|
|
} |