Feature #1604
responsive columns same height
Status:
New
Priority:
Normal
Assignee:
-
Start date:
2020-07-14
Due date:
% Done:
0%
Estimated time:
Updated by Jennifer Jiang almost 6 years ago
.equal {
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
}
@media (min-width: 768px) {
.row.equal {
display: flex;
flex-wrap: wrap;
}
}