diff --git a/bun.lockb b/bun.lockb deleted file mode 100755 index 31d8dcb..0000000 Binary files a/bun.lockb and /dev/null differ diff --git a/frontend/src/app/components/AddressBar.tsx b/frontend/src/app/components/AddressBar.tsx index b9259ad..b1c5e33 100644 --- a/frontend/src/app/components/AddressBar.tsx +++ b/frontend/src/app/components/AddressBar.tsx @@ -98,7 +98,7 @@ export const UserModal = ({ disconnect(); e.stopPropagation(); }} - className="p-3 w-full rounded-lg bg-blue-500 " + className="p-3 w-full rounded-lg bg-[#f77448] " > Disconnect @@ -129,7 +129,7 @@ const AddressBar = ({ return ( )} @@ -178,7 +178,7 @@ const Header = () => {
diff --git a/frontend/src/app/components/ScaffoldDeployer/ScaffoldDeployer.tsx b/frontend/src/app/components/ScaffoldDeployer/ScaffoldDeployer.tsx index 49b0e65..301ee1b 100644 --- a/frontend/src/app/components/ScaffoldDeployer/ScaffoldDeployer.tsx +++ b/frontend/src/app/components/ScaffoldDeployer/ScaffoldDeployer.tsx @@ -127,7 +127,7 @@ function ScaffoldDeployer() {
)} - @@ -157,7 +157,7 @@ function ScaffoldDeployer() { diff --git a/frontend/src/app/components/TransactionList/TransactionItem.tsx b/frontend/src/app/components/TransactionList/TransactionItem.tsx index af0ff8c..6097c87 100644 --- a/frontend/src/app/components/TransactionList/TransactionItem.tsx +++ b/frontend/src/app/components/TransactionList/TransactionItem.tsx @@ -15,7 +15,7 @@ const TransactionItem = ({ transaction }: { transaction: Transaction }) => { break; case Status.Pending: Icon = Clock; - color = "text-blue-500"; + color = "text-[#f77448]"; break; case Status.Rejected: Icon = AlertCircle; @@ -30,7 +30,7 @@ const TransactionItem = ({ transaction }: { transaction: Transaction }) => {
{Icon && }
-

{transaction.title}

+

{transaction.title}

{transaction.text}

@@ -39,7 +39,7 @@ const TransactionItem = ({ transaction }: { transaction: Transaction }) => { {formatDate(transaction.createdAt)}

-