styling dead view

This commit is contained in:
JDonadio 2017-03-10 17:04:36 -03:00
commit 1df951ad85
8 changed files with 159 additions and 10 deletions

View file

@ -0,0 +1,36 @@
#dead-view {
@mixin img-frame {
height: 60px;
width: 60px;
box-shadow: none;
margin: auto;
}
.img-container-copay {
padding: 20%;
.big-icon-svg {
> .bg {
@include img-frame;
background-image: url("../img/icon-fingerprint-copay.svg");
}
}
}
.img-container-bitpay {
padding: 20%;
.big-icon-svg {
> .bg {
@include img-frame;
background-image: url("../img/icon-fingerprint-bitpay.svg");
}
}
}
.comments {
text-align: center;
.header {
font-size: 20px;
}
.text-content {
width: 90%;
margin: 5% auto;
}
}
}

View file

@ -47,3 +47,4 @@
@import "integrations/integrations";
@import "custom-amount";
@import "pincode";
@import "deadview";