populate wallet list

This commit is contained in:
Marty Alcala 2016-10-12 17:20:06 -04:00
commit b42bf01f6a
4 changed files with 67 additions and 6 deletions

View file

@ -28,3 +28,34 @@
// margin-right: 20px;
// }
// }
#view-confirm {
$border-color: #EFEFEF;
height: auto;
.wallet-selector {
.wallet {
border: 0;
padding-right: 0;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 1px;
}
.wallet-details {
position: relative;
padding-top: 16px;
padding-bottom: 16px;
&::after {
display: block;
position: absolute;
width: 100%;
height: 1px;
//background: rgba(221, 221, 221, 0.3);
background: $border-color;
bottom: 0;
right: 0;
content: '';
}
}
}
}

View file

@ -1,9 +1,10 @@
action-sheet {
.bp-action-sheet {
$border-color: #EFEFEF;
&__sheet {
background: #fff;
height: 300px;
//height: 300px;
width: 100%;
position: fixed;
bottom: 0;
@ -11,6 +12,11 @@ action-sheet {
transform: translateY(100%);
transition: transform 250ms cubic-bezier(0.4, 0.0, 0.2, 1);
z-index: 100;
padding-top: 1.75rem;
padding-left: 2rem;
padding-right: .75rem;
color: #2f2f2f;
padding-bottom: 2rem;
&.slide-up {
transform: translateY(0);
@ -18,11 +24,16 @@ action-sheet {
}
.back-arrow {
padding: 1rem;
padding-top: 1.5rem;
padding-left: 2rem;
padding-bottom: 1rem;
cursor: pointer;
}
.header {
font-weight: 600;
padding-bottom: 1rem;
border-bottom: 1px solid $border-color;
margin-bottom: 1px;
}
}
&__backdrop {