foldbank-mock/web/app/components/singleTnx.module.css
Ameya Shenoy 6a9ab237a5
feat: major mods
- added graph on dashboard
- added recent txns

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2023-03-10 19:37:22 +05:30

72 lines
1.1 KiB
CSS

.tnx {
background: #FFFFFF;
border-radius: 20px;
margin-bottom: 10px;
box-shadow: 5px 5px 5px #DBD9E4;
}
.tnxHeading {
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: 3px solid #F0EFF5;
height: 50px;
align-items: center;
padding: 20px;
color: #9390A9;
}
.date {
color: #9390A9;
font: 1.2em Sans-serif;
font-weight: 500;
}
.tag {
border: 2px solid #DDDCE4;
border-radius: 10px;
background: #F1F0F5;
color: #263D5F;
padding: 10px 12px;
font: 1.2em Sans-serif;
font-weight: 600;
}
.tnxTitle {
text-overflow: ellipsis;
font: 1.3em Sans-serif;
font-weight: 500;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 110px;
overflow: hidden;
}
.tnxInfo {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 100px;
align-items: center;
padding: 20px;
}
.cost {
display: flex;
}
.minus {
color: #C4C2CC;
font: bold 2em Sans-serif;
}
.rupee {
color: #28274F;
font: 1.2em Sans-serif;
}
.amount {
color: #28274F;
font: bold 2em Sans-serif;
}