Skip to content

Commit f175ea8

Browse files
committed
fix open source cards are of equal height
1 parent fc69340 commit f175ea8

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/containers/projects/Project.scss

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,18 @@
1212
.repo-cards-div-main {
1313
display: grid;
1414
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
15-
gap: 1rem 1rem;
15+
gap: 1rem;
16+
align-items: stretch;
17+
}
18+
19+
.repo-cards-div-main > * {
20+
display: flex;
21+
}
22+
23+
.repo-cards-div-main > * > * {
24+
flex: 1;
25+
display: flex;
26+
flex-direction: column;
1627
}
1728

1829
/* Media Query */

0 commit comments

Comments
 (0)