17 lines
336 B
CSS
17 lines
336 B
CSS
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
background-color: #c0c0c0;
|
|
border-top: 2px solid white;
|
|
border-left: 2px solid white;
|
|
border-bottom: 2px solid #828282;
|
|
border-right: 2px solid #828282;
|
|
margin: 10px;
|
|
}
|
|
|
|
.cardContent {
|
|
display: flex;
|
|
height: 100%;
|
|
}
|