Equal heights regression

This commit is contained in:
tsmitty11 2023-05-19 10:22:11 +02:00
parent 9855e0bfd9
commit 6b9e3d6456

View file

@ -71,12 +71,18 @@
background-position: center; background-position: center;
} }
.content-area {
display: flex;
flex-wrap: wrap;
align-items: stretch; /* Make the children stretch to fill the container */
}
.blog-listing { .blog-listing {
border: 1px solid #949494; border: 1px solid #949494;
transition: 0.2s ease-in-out; transition: 0.2s ease-in-out;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 250px; height: 100%; /* Added this line */
width:100%; width:100%;
} }