17 lines
287 B
CSS
17 lines
287 B
CSS
.cardColumn {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
gap: 30px;
|
|
}
|
|
|
|
.cardRow {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
gap: 30px;
|
|
}
|