diff --git a/app/components/budget-balances/template.hbs b/app/components/budget-balances/template.hbs
index 617db91..42ffd3a 100644
--- a/app/components/budget-balances/template.hbs
+++ b/app/components/budget-balances/template.hbs
@@ -1,21 +1,21 @@
-
+
- | Token |
- Amount |
- Fiat value |
+ Token |
+ Amount |
+ Fiat value |
- | WBTC |
- {{this.communityFunds.balanceWBTC.balance}} |
- {{this.communityFunds.balanceWBTC.balanceUsd}} USD |
+ ETH |
+ {{fmt-crypto-currency this.communityFunds.balanceETH.balance 'ETH'}} |
+ {{this.communityFunds.balanceETH.balanceUsd}} USD |
- | ETH |
- {{this.communityFunds.balanceETH.balance}} |
- {{this.communityFunds.balanceETH.balanceUsd}} USD |
+ WBTC |
+ {{fmt-crypto-currency this.communityFunds.balanceWBTC.balance 'WBTC'}} |
+ {{this.communityFunds.balanceWBTC.balanceUsd}} USD |
\ No newline at end of file
diff --git a/app/styles/app.scss b/app/styles/app.scss
index 858471c..14dba8f 100644
--- a/app/styles/app.scss
+++ b/app/styles/app.scss
@@ -91,6 +91,7 @@ section {
@import "sugar";
@import "item-list";
+@import "components/budget-balances";
@import "components/contribution-details";
@import "components/contribution-list";
@import "components/contributor-list";
diff --git a/app/styles/components/_budget-balances.scss b/app/styles/components/_budget-balances.scss
new file mode 100644
index 0000000..7173b02
--- /dev/null
+++ b/app/styles/components/_budget-balances.scss
@@ -0,0 +1,30 @@
+section#funds {
+ table.token-balances {
+ thead {
+ display: none;
+ }
+
+ th, td {
+ font-size: 1.2rem;
+ vertical-align: text-bottom;
+ }
+
+ th {
+ text-align: left;
+ padding-right: 1.2rem;
+ }
+
+ td {
+ text-align: right;
+
+ &.amount {
+ font-size: 1.6rem;
+ padding-right: 1.2rem;
+ }
+
+ &.fiat-amount {
+ color: rgba(255,255,255,0.8);
+ }
+ }
+ }
+}