Skip to content

Commit

Permalink
solved issues in footer + solved space issue in X from mobile navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
C committed Feb 20, 2023
1 parent 6d441f2 commit 83283a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/AppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const AppBar: React.FC = () => {
</div>
<label
htmlFor="my-drawer"
className="btn-gh items-center justify-between md:hidden mr-5"
className="btn-gh items-center justify-between md:hidden mr-6"
onClick={() => setIsNavOpen(!isNavOpen)}>
<div className="HAMBURGER-ICON space-y-2.5 ml-5">
<div className={`h-0.5 w-8 bg-purple-600 ${isNavOpen ? 'hidden' : ''}`} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Link from 'next/link';
import Image from 'next/image';
export const Footer: FC = () => {
return (
<div className="relative mb-40">
<div className="relative mb-40 mt-40">
<footer className="border-t-2 border-[#141414] bg-black hover:text-white absolute w-full" >
<div className="ml-12 py-12 mr-12">
<div className="grid grid-cols-2 md:grid-cols-6 gap-2 md:gap-8 md:space-x-12 relative">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const App: FC<AppProps> = ({ Component, pageProps }) => {
<AppBar/>
<ContentContainer>
<Component {...pageProps} />
<Footer/>
</ContentContainer>
<Footer/>
</div>
</ContextProvider>
</>
Expand Down

0 comments on commit 83283a8

Please sign in to comment.