diff --git a/instances/widgets.treasury-factory.near/widget/components/TokenAmount.jsx b/instances/widgets.treasury-factory.near/widget/components/TokenAmount.jsx
index 15360b1b..3bca6c66 100644
--- a/instances/widgets.treasury-factory.near/widget/components/TokenAmount.jsx
+++ b/instances/widgets.treasury-factory.near/widget/components/TokenAmount.jsx
@@ -33,9 +33,9 @@ return (
})}
{isNEAR ? (
-
+
) : (
-
+
)}
{/* TODO later */}
diff --git a/instances/widgets.treasury-factory.near/widget/components/TokenIcon.jsx b/instances/widgets.treasury-factory.near/widget/components/TokenIcon.jsx
index aa219e2d..e581520c 100644
--- a/instances/widgets.treasury-factory.near/widget/components/TokenIcon.jsx
+++ b/instances/widgets.treasury-factory.near/widget/components/TokenIcon.jsx
@@ -16,11 +16,11 @@ if (!isNEAR) {
}
return (
-
+
{isNEAR ? (
-
+
) : (
-
+
)}
{ftMetadata.symbol}
diff --git a/instances/widgets.treasury-factory.near/widget/components/templates/AppLayout.jsx b/instances/widgets.treasury-factory.near/widget/components/templates/AppLayout.jsx
index f0ee0f16..dcc732aa 100644
--- a/instances/widgets.treasury-factory.near/widget/components/templates/AppLayout.jsx
+++ b/instances/widgets.treasury-factory.near/widget/components/templates/AppLayout.jsx
@@ -289,7 +289,7 @@ function AppLayout({ page, instance, children, treasuryDaoID, accountId }) {
.custom-truncate {
display: -webkit-box;
- -webkit-line-clamp: 3;
+ -webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
@@ -440,6 +440,10 @@ function AppLayout({ page, instance, children, treasuryDaoID, accountId }) {
border-color: var(--border-color) !important;
color: var(--text-color) !important;
margin-bottom: 20px;
+
+ .amount {
+ font-size: 14px;
+ }
}
.table td:first-child {
diff --git a/instances/widgets.treasury-factory.near/widget/pages/dashboard/Portfolio.jsx b/instances/widgets.treasury-factory.near/widget/pages/dashboard/Portfolio.jsx
index 70080c2b..acd7f2ed 100644
--- a/instances/widgets.treasury-factory.near/widget/pages/dashboard/Portfolio.jsx
+++ b/instances/widgets.treasury-factory.near/widget/pages/dashboard/Portfolio.jsx
@@ -184,7 +184,9 @@ const PortfolioCard = ({
{Icon ?
:
}
-
{symbol}
+
+ {symbol}
+
${Big(price ?? "0").toFixed(2)}
diff --git a/instances/widgets.treasury-factory.near/widget/pages/payments/Table.jsx b/instances/widgets.treasury-factory.near/widget/pages/payments/Table.jsx
index 75f16ed4..493a9558 100644
--- a/instances/widgets.treasury-factory.near/widget/pages/payments/Table.jsx
+++ b/instances/widgets.treasury-factory.near/widget/pages/payments/Table.jsx
@@ -66,6 +66,10 @@ const Container = styled.div`
background: inherit;
}
+ thead td {
+ text-wrap: nowrap;
+ }
+
table {
overflow-x: auto;
}
diff --git a/instances/widgets.treasury-factory.near/widget/pages/stake-delegation/Table.jsx b/instances/widgets.treasury-factory.near/widget/pages/stake-delegation/Table.jsx
index 27c1a10a..4f8051a2 100644
--- a/instances/widgets.treasury-factory.near/widget/pages/stake-delegation/Table.jsx
+++ b/instances/widgets.treasury-factory.near/widget/pages/stake-delegation/Table.jsx
@@ -92,6 +92,10 @@ const Container = styled.div`
table {
overflow-x: auto;
+
+ thead td {
+ text-wrap: nowrap;
+ }
}
.text-warning {