lumeweb.com/src/components/Home/Grid/GridStyles.css

18 lines
278 B
CSS
Raw Normal View History

2023-05-06 16:35:54 +00:00
.cards {
2023-05-07 18:16:06 +00:00
max-width: 77.5%;
2023-05-07 14:29:00 +00:00
margin: 126px auto;
2023-05-05 06:02:45 +00:00
display: grid;
2023-05-06 16:35:54 +00:00
gap: 1rem;
2023-05-05 06:02:45 +00:00
}
2023-05-06 16:35:54 +00:00
@media (width >=600px) {
.cards {
grid-template-columns: repeat(2, 1fr);
}
2023-05-05 06:02:45 +00:00
}
2023-05-06 16:35:54 +00:00
@media (width >=900px) {
.cards {
grid-template-columns: repeat(3, 1fr);
}
2023-05-05 06:02:45 +00:00
}