Skip to content

Commit

Permalink
Minor adjustments to spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaeling committed Oct 24, 2023
1 parent c27c461 commit 632ff8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/(pages)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Layout({
<header className='bg-lightest relative'>
<NavBar />
</header>
<main className='justify-center px-12 md:px-24 pb-24 pt-64 text-lg'>
<main className='justify-center px-12 md:px-24 pb-24 pt-60 text-lg'>
{children}
</main>
<Footer />
Expand Down
2 changes: 1 addition & 1 deletion src/components/root/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import ExternalLink from './external-link';

export default function Footer() {
return (
<div className='px-12 md:px-24 font-body text-md text-dark font-thin justify-center pt-6 sm:pt-24 pb-6'>
<div className='px-12 md:px-24 font-body text-md text-dark font-thin justify-center pt-6 sm:pt-12 pb-6'>
<p>
Made with ♡ + matcha using&nbsp;
<ExternalLink href='https://nextjs.org/' underline className='hover:text-light'>
Expand Down
2 changes: 1 addition & 1 deletion src/components/root/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import navItems from '@/utils/nav-items';
export default function NavBar(): JSX.Element {
const currentPage = usePathname();
return (
<nav className='w-48 absolute inset-y-0 right-0 pt-12 md:pt-24 pr-12 mr-10'>
<nav className='w-48 absolute inset-y-0 right-0 pt-12 md:pt-20 pr-12 mr-10'>
<ul className='lg:fixed z-10 w-48 font-display font-thin text-right text-dark text-2xl'>
{navItems.map((item, index) => (
<li
Expand Down

0 comments on commit 632ff8a

Please sign in to comment.