21 lines
352 B
SCSS
Vendored
21 lines
352 B
SCSS
Vendored
.game-index {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.game-index-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 18rem;
|
|
height: 18rem;
|
|
background-color: $light;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|