mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-19 01:01:27 -04:00
23 lines
399 B
CSS
23 lines
399 B
CSS
.catalog-wrap {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: space-evenly;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.catalog-item {
|
|
padding: 1rem;
|
|
background-color: var(--primary-background);
|
|
width: 400px;
|
|
min-height: 300px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.catalog-item-bottom {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
}
|