- added graph on dashboard - added recent txns Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
47 lines
663 B
CSS
47 lines
663 B
CSS
|
|
.bankBalance {
|
|
margin-left: 30px;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
background: #F0F1F5;
|
|
color: #7A799B;
|
|
width: 200px;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.check {
|
|
background: #CBCADD;
|
|
color: #212439;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.checkHolder {
|
|
margin-left: 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #CBCADD;
|
|
border-radius: 50%;
|
|
aspect-ratio: 1;
|
|
width: 20px;
|
|
}
|
|
|
|
.accountBalance {
|
|
color: #7D7BA0;
|
|
margin-right: 15px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bankLogo {
|
|
margin-left: 15px;
|
|
}
|
|
|
|
|