44 lines
712 B
CSS
44 lines
712 B
CSS
.cardContainer {
|
|
display: flex;
|
|
padding: 16px 0;
|
|
align-items: flex-start;
|
|
gap: 16px;
|
|
align-self: stretch;
|
|
border-bottom: 1px solid #2c2d3d;
|
|
cursor: pointer;
|
|
}
|
|
.cardDetails {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
flex: 1 0 0;
|
|
}
|
|
.list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 5px;
|
|
align-self: stretch;
|
|
}
|
|
.list p {
|
|
color: #85869b;
|
|
font-family: Inter;
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: normal;
|
|
}
|
|
|
|
.list p:nth-child(2) {
|
|
color: #eeeffd;
|
|
font-family: Inter;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
.cardAction {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 17px;
|
|
}
|