Skip to content

Commit

Permalink
Update VaultSendTool.jsx
Browse files Browse the repository at this point in the history
Fixed Colors
  • Loading branch information
LoafPickleWW authored Jul 3, 2024
1 parent e7d25d4 commit ebaed2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pages/VaultSendTool.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export function VaultSendTool() {
<div className="flex flex-col justify-center items-center w-[16rem]">
{processStep === TRANSACTIONS_COMPLETED_PROCESS ? (
<>
<p className="pt-4 text-green-500 animate-pulse text-sm">
<p className="pt-4 text-primary-green animate-pulse text-sm">
All transactions completed!
<br />
</p>
Expand All @@ -397,7 +397,7 @@ export function VaultSendTool() {
</>
) : processStep === SENDING_TRANSACTIONS_PROCESS ? (
<>
<p className="pt-4 text-green-500 animate-pulse text-sm">
<p className="pt-4 text-primary-green animate-pulse text-sm">
Sending transactions...
</p>
</>
Expand All @@ -418,7 +418,7 @@ export function VaultSendTool() {
</>
) : processStep === CREATE_TRANSACTIONS_PROCESS ? (
<>
<p className="pt-4 text-green-500 animate-pulse text-sm">
<p className="pt-4 text-primary-green animate-pulse text-sm">
Creating transactions...
<br />
</p>
Expand All @@ -428,7 +428,7 @@ export function VaultSendTool() {
</>
) : processStep === FETCH_SEGMENTS_PROCESS ? (
<>
<p className="pt-4 text-green-500 animate-pulse text-sm">
<p className="pt-4 text-primary-green animate-pulse text-sm">
Fetching segments of {domains}..
<br />
</p>
Expand All @@ -441,7 +441,7 @@ export function VaultSendTool() {
{" "}
<button
id="create_transactions_id"
className="mb-2 bg-green-500 hover:bg-green-700 text-black text-sm font-semibold rounded py-2 w-fit px-4 mx-auto mt-1 duration-700"
className="mb-2 bg-primary-green hover:bg-primary-green text-black text-sm font-semibold rounded py-2 w-fit px-4 mx-auto mt-1 duration-700"
onClick={() => {
createTransactions();
}}
Expand Down

0 comments on commit ebaed2a

Please sign in to comment.