diff --git a/src/assets/images/banner-refer.jpg b/src/assets/images/banner-refer.jpg new file mode 100644 index 0000000..6c82ae5 Binary files /dev/null and b/src/assets/images/banner-refer.jpg differ diff --git a/src/components/MyWallet/Balance.jsx b/src/components/MyWallet/Balance.jsx index 94a4314..6ffc551 100644 --- a/src/components/MyWallet/Balance.jsx +++ b/src/components/MyWallet/Balance.jsx @@ -33,40 +33,40 @@ function Balance({wallet, coupon}) { : wallet.data.length ? wallet.data.map((item, index)=> ( -
-
-
-

- {item.description} -

{item.symbol}

+
+
+
+

+ {item.description} +

{item.symbol}

+
+
+

Balance

+ {item.symbol}{(item.amount*0.01).toFixed(2)} +
+
+

Escrow

+ {item.symbol}{(item.escrow*0.01).toFixed(2)} +
-
-

Balance

- {item.symbol}{(item.amount*0.01).toFixed(2)} -
-
-

Escrow

- {item.symbol}{(item.escrow*0.01).toFixed(2)} -
-
-
- { - item.action_type != 'AC_AD_FD_ONLY' ? - + { + item.action_type != 'AC_AD_FD_ONLY' ? + Transfer:'' - } - + height="38" viewBox="0 0 42 42" fill="none"> - Add Credit -
+ Add Credit +
)) : diff --git a/src/index.css b/src/index.css index 275d421..45944c4 100644 --- a/src/index.css +++ b/src/index.css @@ -9,6 +9,15 @@ font-family: "Product Sans"; src: url("./assets/fonts/Product Sans Bold.ttf"); } +.wallet-box{ + background-color: aliceblue; + height: 120px; + padding: 5px; + border-radius: 20px; +} +.bal-col1{ + width: 110px; +} .bg-green{ background-color: darkgreen; }