Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
AtmegaBuzz committed Feb 19, 2023
1 parent 1e34f85 commit 818b998
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 4 deletions.
Binary file added public/VaultForAll-logos.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/VaultForAll-logos.zip
Binary file not shown.
Binary file added public/VaultForAll-logos_black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/VaultForAll-logos_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
7 changes: 7 additions & 0 deletions public/logo_info.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

Fonts used: Raleway-Heavy

Colors used: 44CBB1,3D2F33



6 changes: 5 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useState, createContext } from "react";
import { useState, createContext, useEffect } from "react";
import { BrowserRouter, Route, Routes, Link } from "react-router-dom";
import { Toaster } from "react-hot-toast";

Expand Down Expand Up @@ -26,6 +26,10 @@ function App() {
setContacts,
};

useEffect(()=>{
document.title = "VaultForAll"
},[])

return (
<walletInfoContext.Provider value={contextData}>
<Toaster />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/SendEth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function SendEth() {
Hey New reward unlocked, check{" "}
<a
style={{ color: "orange" }}
href={resp.transaction_external_url}
href={`https://polygon.nftscan.com/${resp.transaction_hash}`}
target="_blank"
rel="noreferrer"
>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function Wallet(){
</div>


<div className="flex flex-col max-h-[300px] overflow-y-scroll p-3 border-red-400 rounded-md mt-24 px-4 border-opacity-30 border">
<div className="flex flex-col max-h-[300px] w-[80%] overflow-y-scroll p-3 border-red-400 rounded-md mt-10 px-4 border-opacity-30 border">

{
feed?.map((item)=>{
Expand All @@ -175,7 +175,7 @@ export default function Wallet(){
return;
}
return (
<div key={item.message} className="w-full h-[60px] p-3 flex justify-between items-center text-white">
<div key={item.message} className="w-full h-[60px] p-3 mt-3 flex justify-between items-center text-white">
<div className="w-[80%] h-1/1 flex items-center">
<div className="w-[15%]">
<FontAwesomeIcon className="w-5 h-5 fill-current text-green-500" icon={faArrowUpRightFromSquare} />
Expand Down

0 comments on commit 818b998

Please sign in to comment.