ref text size

This commit is contained in:
JDonadio 2017-01-18 12:36:26 -03:00
parent a99a133814
commit a6f3e1ace4
1 changed files with 28 additions and 1 deletions

View File

@ -48,11 +48,20 @@
.amount-bar { .amount-bar {
padding: 24px 0; padding: 24px 0;
font-size: 18px; font-size: 18px;
@media(max-height: 480px) {
padding: 0px;
}
.title { .title {
float: left; float: left;
padding-top: 10px; padding-top: 10px;
color: $dark-gray; color: $dark-gray;
font-weight: bold; font-weight: bold;
@media(max-height: 480px) {
padding: 0px;
}
}
@media(max-height: 480px) {
padding-top: 3px;
} }
} }
.amount { .amount {
@ -66,6 +75,9 @@
.light { .light {
color: $light-gray; color: $light-gray;
} }
@media(max-height: 480px) {
top: 45px;
}
} }
} }
.amount-pane-no-recipient { .amount-pane-no-recipient {
@ -108,12 +120,15 @@
} }
.amount { .amount {
&__editable { &__editable {
margin-bottom: 1rem;
&--minimize { &--minimize {
font-size: 22px; font-size: 22px;
} }
&--standard { &--standard {
font-size: 42px; font-size: 42px;
@media(max-height: 480px) {
font-size: 26px;
padding-top: 10px;
}
} }
&--placeholder { &--placeholder {
color: $light-gray; color: $light-gray;
@ -139,6 +154,7 @@
} }
&--standard { &--standard {
font-size: 18px; font-size: 18px;
padding: 10px 0;
} }
&--placeholder { &--placeholder {
color: $light-gray; color: $light-gray;
@ -149,11 +165,18 @@
font-size: .9em; font-size: .9em;
margin-bottom: -.9em; margin-bottom: -.9em;
line-height: 1; line-height: 1;
@media(max-height: 480px) {
margin-bottom: 0;
}
} }
&__result-equiv { &__result-equiv {
color: $mid-gray; color: $mid-gray;
font-size: 1.2em; font-size: 1.2em;
margin-top: 2rem; margin-top: 2rem;
@media(max-height: 480px) {
margin-top: 0;
font-size: 16px;
}
} }
} }
.keypad { .keypad {
@ -205,5 +228,9 @@
} }
} }
@media(max-height: 480px) {
font-size: 12px;
}
} }
} }