Merge pull request #5797 from ajp8164/feat/intel-tee

Baseline Intel TEE support
This commit is contained in:
Javier Donadío 2017-04-17 13:57:25 -03:00 committed by GitHub
commit 803a9ca365
27 changed files with 635 additions and 102 deletions

View file

@ -162,6 +162,17 @@
transform: translate(100%, -40%);
}
}
.overlay {
position: absolute;
width: 220px;
height: 100%;
background-color: rgba(255,255,255,0.8);
button {
width: 100%;
top: 50%;
transform: translateY(-50%);
}
}
@media(max-height: 700px) {
padding: 10vh 0 4vh;
}

View file

@ -3,6 +3,13 @@
.icon-bitpay {
background-image: url("../img/icon-bitpay.svg");
}
.warning {
color: $v-warning-color;
}
.centered {
width: 100%;
text-align: center;
}
.disabled {
color: $v-light-gray;
}