Files
games/Project/style.css
T
2026-05-14 17:45:59 +03:00

20 lines
252 B
CSS

.game-board {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.card-img {
width: 200px;
height: 200px;
overflow: hidden;
}
.card-img img {
width: 100%;
height: 100%;
object-fit: cover;
}