Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Corrected syntax errors and removed duplicate properties. #101

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions app/components/Deposit/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
justify-content: center;
align-items: center;
background-color: #000000; /* Black background */
transition: transform 300ms cubic-bezier(.25, .46, .45, .94), filter 300ms cubic-bezier(.25, .46, .45, .94);;
transition: transform 300ms cubic-bezier(.25, .46, .45, .94), filter 300ms cubic-bezier(.25, .46, .45, .94);
}

.main-content {
Expand Down Expand Up @@ -67,7 +67,7 @@
background: rgba(255, 255, 255, 0.05);
}

div.disabled {
div.disabled {
cursor: url("../../../public/cursor.svg") 0 0, auto;
}

Expand Down Expand Up @@ -197,8 +197,7 @@
padding: 10px;
color: #5a5a5a;
border: 1px solid rgba(255, 255, 255, 0.1);
width: 100%;


transition: background-color 0.1s var(--ease-out-quad), border 0.1s var(--ease-out-quad);
}

Expand Down
8 changes: 4 additions & 4 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Header } from './components/Header';
import { Footer } from './components/Footer';
import { TransactionProvider } from './components/TransactionPool';
import useEthereumData from "@/lib/ethUtils";
import { useWalletClient } from "./hooks"
import { useWalletClient } from "./hooks";
import {
EthereumDataContext,
WalletClientContext,
Expand All @@ -30,7 +30,7 @@ export default function Main() {

<EclipseWalletContext.Provider value={{eclipseAddr, setEclipseAddr, isValid, setIsValid}}>
<SkeletonTheme baseColor="#FFFFFF0A" highlightColor="#FFFFFF26">
<div className="flex items-center text-white flex flex-col justify-between" id="main-content" style={{
<div className="flex items-center text-white flex-col justify-between" id="main-content" style={{
background: "black",
transition: "filter 300ms var(--ease-out-quad)",
height: "100%"
Expand All @@ -44,11 +44,11 @@ export default function Main() {
<Footer />
</div>
</SkeletonTheme>
</ EclipseWalletContext.Provider>
</EclipseWalletContext.Provider>

</TransactionProvider>
</WalletClientContext.Provider >
</ EthereumDataContext.Provider>
</EthereumDataContext.Provider>
);
}