Files
Gallus_Pub/Gallus_Pub_v1/styles/components/EventsGrid.css

20 lines
303 B
CSS

.events-gird {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
padding: 2rem 0;
width: 100%;
}
@media (min-width: 1600px) {
.events-gird {
justify-content: space-between;
}
}
@media (max-width: 1599px) {
.events-gird {
justify-content: space-around;
}
}