Skip to content

Commit

Permalink
refactor: revert z index change + add y-spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
bayological committed Aug 15, 2024
1 parent 199a32a commit bccc7f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mento-protocol/mento-web",
"version": "2.2.0",
"version": "2.2.1",
"description": "A simple DApp for Celo Mento exchanges",
"keywords": [
"Celo",
Expand Down
2 changes: 1 addition & 1 deletion src/components/nav/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { isStale } from 'src/utils/time'

export function Footer() {
return (
<div className="z-20 inline-flex justify-between w-full p-3 sm:px-5 sm:py-7">
<div className="z-20 inline-flex justify-between w-full p-3 mt-10 sm:px-5 sm:py-7 pt-7">
<div className="inline-flex items-start justify-start gap-4">
<div className="p-2 justify-start items-start gap-2.5 flex">
<FooterIconLink to={links.twitter} imgSrc={Twitter} alt="Twitter" />
Expand Down
2 changes: 1 addition & 1 deletion src/layout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function AppLayout({ pathName, children }: PropsWithChildren<Props>) {
>
<TopBlur />
<Header />
<main className={`relative z-30 flex items-center justify-center grow`}>{children}</main>
<main className={`relative z-20 flex items-center justify-center grow`}>{children}</main>
<Footer />
<BottomGrid />
</div>
Expand Down

0 comments on commit bccc7f6

Please sign in to comment.