File size: 286 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
.contentTitle {
font-size: 18px;
color: gray;
margin-left: 15px;
}
.contentGridDisplay {
display: grid;
grid-template-columns: repeat(5, 2fr);
margin: 0 auto;
margin-left: 10px;
grid-gap: 8px;
overflow-x: hidden;
}
.gridImg {
height: 130px;
object-fit: contain;
}
|