mirror of
https://github.com/ivabus/www
synced 2024-11-24 09:45:05 +03:00
Equal heights regression
This commit is contained in:
parent
9855e0bfd9
commit
6b9e3d6456
1 changed files with 7 additions and 1 deletions
|
@ -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%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue