Skip to content

Commit

Permalink
fix: breakpoints tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekubn committed Jul 30, 2023
1 parent 2e66343 commit 95ae9a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { H5, ParagraphLarge } from './Typography';

const Navigation = (): React.ReactElement => (
<header className="top-0 sticky z-50 block bg-black opacity-80">
<div className="max-w-6xl flex flex-row justify-between mx-auto p-4 sm-px-6">
<div className="max-w-6xl flex flex-row justify-between mx-auto p-4 sm:px-6">
<H5 font="bold" className="gradient-blue-text items-start">
<Link href="/">mikekubn.cz</Link>
</H5>
Expand Down
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const RootLayout = ({ children }: { children: React.ReactNode }): React.ReactEle
<head />
<body>
<Navigation />
<main className="-mt-16 min-h-screen px-4 sm-px-6 max-w-6xl flex flex-col mx-auto">{children}</main>
<main className="-mt-16 min-h-screen px-4 sm:px-6 max-w-6xl flex flex-col mx-auto">{children}</main>
<Footer />
</body>
</html>
Expand Down

0 comments on commit 95ae9a1

Please sign in to comment.