File size: 643 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
.list-overview {
margin-bottom: 30px;
&__title {
margin-top: 110px;
margin-left: 10px;
font-size: 1.7rem;
margin-bottom: 40px;
text-transform: capitalize;
@media screen and (max-width: 800px) {
margin-top: 180px;
text-align: center;
font-size: 1.4rem;
margin-left: unset;
}
}
&__outer {
width: 100%;
display: flex;
justify-content: center;
}
&__inner {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
grid-gap: 30px;
grid-template-rows: 1fr;
width: 100%;
margin: 0 auto;
}
}
|