Wallet/src/sass/views/confirm.scss

59 lines
1,003 B
SCSS
Raw Normal View History

2016-10-12 17:20:06 -04:00
#view-confirm {
$border-color: #EFEFEF;
height: auto;
.wallet-selector {
.wallet {
border: 0;
padding-right: 0;
padding-top: 0;
2016-10-12 17:51:09 -04:00
padding-left: 65px;
2016-10-12 17:20:06 -04:00
padding-bottom: 0;
margin-bottom: 1px;
2016-10-12 17:51:09 -04:00
> i {
padding: 0;
margin-left: -5px;
> img {
height: 39px;
width: 39px;
padding: 4px;
}
}
2016-10-12 17:20:06 -04:00
}
2016-10-12 18:49:00 -04:00
.wallet-inner {
display: flex;
2016-10-12 17:20:06 -04:00
position: relative;
padding-top: 16px;
padding-bottom: 16px;
&::after {
display: block;
position: absolute;
width: 100%;
height: 1px;
background: $border-color;
bottom: 0;
right: 0;
content: '';
}
2016-10-12 18:49:00 -04:00
.check {
padding: 0 1.2rem;
}
}
.wallet-details {
flex-grow: 1;
.wallet-name {
padding-bottom: 5px;
}
.wallet-balance {
color: #3A3A3A;
font-family: "Roboto-Light";
}
2016-10-12 17:20:06 -04:00
}
}
}