fix cards responsivness

This commit is contained in:
Hristo Nedelkov 2024-01-22 10:07:40 +02:00
parent 1571e3727c
commit 510a8b28bc

View File

@ -2,26 +2,25 @@
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
gap: 16px;
flex-wrap: wrap;
width: 250%;
margin-top: 10%;
}
.overviewCard {
border-radius: 16px;
border: 1px solid rgba(0, 0, 0, 0.15);
width: 44%;
padding: 12px 16px;
background-color: #fff;
min-width: 150px;
min-width: 220px;
}
@media screen and (max-width: 1000px) {
.overviewCards {
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.overviewCard {
width: 160%;
width: 35%;
margin-bottom: 16px;
}
}