19 lines
380 B
CSS
19 lines
380 B
CSS
.cardContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
height: 150px;
|
|
width: 150px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
border: 1px solid rgba(220, 220, 220, 0.4);
|
|
box-shadow: 5px 5px 7px rgba(220, 220, 220, 0.5);
|
|
border-radius: 10px;
|
|
}
|