improve bitcoin popup for mobile

This commit is contained in:
Gabriele Cirulli
2014-03-11 16:16:42 +01:00
parent ff72bf8a14
commit ce45d4cd8e
2 changed files with 27 additions and 0 deletions
+9
View File
@@ -697,3 +697,12 @@ hr {
opacity: 1; opacity: 1;
top: -45px; top: -45px;
pointer-events: auto; } pointer-events: auto; }
@media screen and (max-width: 480px) {
.btc-donate .address {
margin-right: -85px;
width: 300px; }
.btc-donate .address code {
font-size: 13px; }
.btc-donate .address:after {
left: 73%;
bottom: 2px; } }
+18
View File
@@ -559,4 +559,22 @@ hr {
pointer-events: auto; pointer-events: auto;
} }
} }
// Styles for small screens
@include smaller(480px) {
.address{
margin-right: -85px;
// background: red;
width: 300px;
code {
font-size: 13px;
}
&:after {
left: 73%;
bottom: 2px;
}
}
}
} }