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

@ -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 {