22 lines
446 B
CSS
22 lines
446 B
CSS
.cardContainer {
|
|
padding-top: 20px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
gap: 20px;
|
|
}
|
|
|
|
.card {
|
|
height: 150px;
|
|
width: 150px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
text-align: center;
|
|
border-top: 2px solid white;
|
|
border-left: 2px solid white;
|
|
border-bottom: 2px solid #828282;
|
|
border-right: 2px solid #828282;
|
|
}
|