Skip to content

Commit

Permalink
Merge branch 'main' into update-dashboard-head
Browse files Browse the repository at this point in the history
  • Loading branch information
xieqian committed Mar 23, 2024
2 parents 90be7cd + 51c0f43 commit 8a14c1e
Show file tree
Hide file tree
Showing 14 changed files with 1,083 additions and 25 deletions.
3 changes: 2 additions & 1 deletion components/Footer/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ export const Wrapper = styled("div")(({ theme }) => ({
left: 0,
right: 0,
marginTop: "38px",
paddingBottom: "20px",
},
[theme.breakpoints.up("sm")]: {
gridTemplateColumns: "1fr 1fr",
width: "100%",
padding: "1.5rem",
padding: "38px",
},
}));

Expand Down
10 changes: 5 additions & 5 deletions components/Header/Bridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ export const bridgeList: IBridge[] = [
// subTitle: "Solana | Terra | Celo",
// link: "https://app.allbridge.io/bridge",
// },
{
title: "Electron Labs",
subTitle: "Ethereum",
link: "https://mainnet.electronlabs.org/bridge",
},
// {
// title: "Electron Labs",
// subTitle: "Ethereum",
// link: "https://mainnet.electronlabs.org/bridge",
// },
];

type IBridge = {
Expand Down
4 changes: 3 additions & 1 deletion components/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ const Layout = ({ children }) => {
<Theme>
<PageGrid>
<Header />
<main className="md:px-10">{children}</main>
<main className="md:px-10" id="root">
{children}
</main>
</PageGrid>
<Footer />
</Theme>
Expand Down
Loading

0 comments on commit 8a14c1e

Please sign in to comment.