diff --git a/src/app/features/wallets/transfer/transfer.page.html b/src/app/features/wallets/transfer/transfer.page.html
index c890441f5..ddaf9a7d5 100644
--- a/src/app/features/wallets/transfer/transfer.page.html
+++ b/src/app/features/wallets/transfer/transfer.page.html
@@ -94,11 +94,11 @@
-
+
{{ t('wallets.gasFee') }}:
{{ gasFee > 0 ? (gasFee | number: '1.2-2') : t('wallets.pending') }}
-
+
{{ t('wallets.total') }} {{ totalCost$ | ngrxPush | currency }}
diff --git a/src/app/features/wallets/transfer/transfer.page.scss b/src/app/features/wallets/transfer/transfer.page.scss
index 8cd92e1f4..79fa13796 100644
--- a/src/app/features/wallets/transfer/transfer.page.scss
+++ b/src/app/features/wallets/transfer/transfer.page.scss
@@ -32,12 +32,24 @@ ion-card {
margin-bottom: 0;
}
+ h6.gas-fee-text {
+ @media (max-width: 360px) {
+ font-size: 14px;
+ }
+ }
+
h4 {
margin-top: 2%;
font-weight: bold;
letter-spacing: 0.02em;
}
+ h4.wallet-total-text {
+ @media (max-width: 360px) {
+ font-size: 14px;
+ }
+ }
+
#deposit-withdraw-btn-col {
padding-left: 0;
padding-right: 0;
@@ -53,6 +65,10 @@ ion-card {
width: 80%;
--border-radius: 10px;
+
+ @media (max-width: 360px) {
+ font-size: 12px;
+ }
}
}
@@ -73,6 +89,16 @@ ion-card {
margin-top: 0;
font-weight: bold;
letter-spacing: 0.02em;
+
+ @media (max-width: 360px) {
+ font-size: 16px;
+ }
+ }
+
+ h1 {
+ @media (max-width: 360px) {
+ font-size: 20px;
+ }
}
}
diff --git a/src/app/features/wallets/wallets.page.html b/src/app/features/wallets/wallets.page.html
index 142cb1499..784806d50 100644
--- a/src/app/features/wallets/wallets.page.html
+++ b/src/app/features/wallets/wallets.page.html
@@ -16,14 +16,16 @@
- {{ totalBalance$ | ngrxPush | currency }} NUM
+
+ {{ totalBalance$ | ngrxPush | currency }} NUM
+
- NUM
+ NUM
diff --git a/src/app/features/wallets/wallets.page.scss b/src/app/features/wallets/wallets.page.scss
index 01648ba5c..917e8bd67 100644
--- a/src/app/features/wallets/wallets.page.scss
+++ b/src/app/features/wallets/wallets.page.scss
@@ -33,18 +33,32 @@ ion-card {
margin-left: 12px;
margin-right: 8px;
+ h1.balance-text {
+ @media (max-width: 360px) {
+ font-size: 20px;
+ }
+ }
+
#num-icon-row {
ion-img {
margin-top: 10px;
width: 29px;
+
+ @media (max-width: 360px) {
+ width: 20px;
+ }
}
- h3 {
+ h3.num-text {
flex: none;
order: 1;
flex-grow: 0;
margin-top: 21px;
margin-left: 7px;
+
+ @media (max-width: 360px) {
+ font-size: 20px;
+ }
}
}