began update for wallet module and receive screen

This commit is contained in:
Jamal Jackson 2016-09-07 09:46:00 -04:00
commit 21a2f41ef9
7 changed files with 135 additions and 36 deletions

View file

@ -63,3 +63,7 @@ ion-header-bar{
border:none;
}
}
.border-top{
border-top:1px solid rgb(228,228,228);
}

View file

@ -772,6 +772,10 @@ ul.wallet-selection.wallets {
margin: 30px 0;
}
.m15v {
margin: 15px 0;
}
.m10h {
margin: 0 10px;
}
@ -995,6 +999,8 @@ input[type=number] {
@import 'mixins/mixins';
@import "views/add";
@import "views/tab-home";
@import "views/tab-receive";
@import "views/walletDetails";
@import 'views/onboarding/onboarding';
@import "views/includes/walletActivity";
@import "views/includes/wallets";

View file

@ -1,4 +1,8 @@
@mixin center-block($topBottom: 0) {
float:none;
margin: $topBottom auto;
}
.center-block{
@include center-block();
}

View file

@ -0,0 +1,33 @@
.wallets{
.slides{
.swiper-container{
width:75% !important;
overflow:visible;
}
.card{
padding: .7rem;
padding-left:.25rem;
padding-right:.25rem;
border-radius: .25rem;
}
.swiper-slide{
width:100% !important;
&.swiper-slide-prev, &.swiper-slide-next{
opacity: .2;
}
&.swiper-slide-prev{
left:-5%;
}
&.swiper-slide-next{
left:4%;
}
span{
float:right;
clear:both;
}
}
}
.swiper-pagination{
visibility: hidden;
}
}

View file

@ -0,0 +1,34 @@
#tab-receive {
#address {
background: #fff;
.item {
border: none;
font-size: .9rem;
i {
font-size: 1.3rem;
&.ion-social-bitcoin-outline {
border-right: 1px solid rgb(228, 228, 228);
}
}
}
.bit-address {
font-size: .8rem;
.item {
padding-top: 5px;
padding-bottom: 5px;
}
&-gen-address {}
}
}
#wallets {
&:before {
content: "";
display: inline-block;
width: 0;
height: 0;
border-style: solid;
border-width: 0 20px 20px 20px;
border-color: transparent transparent #6980fe transparent;
}
}
}