Skip to content

Commit

Permalink
chore: style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Aug 25, 2024
1 parent fbb6ab3 commit 97063d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function Layout({ children }: { children: React.ReactNode }) {
</div>
</div>
</header>
<main className="flex-1">{children}</main>
<main className="w-full">{children}</main>
</div>
<ScrollRestoration />
<Scripts />
Expand Down
4 changes: 2 additions & 2 deletions apps/web/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default function Index() {
return (
<>
<div
className={`w-full py-4 px-4 sm:px-6 lg:px-8 lg:max-w-3xl transition-all duration-500 ease-in-out ${
className={`w-full max-w-3xl py-4 px-4 sm:px-6 lg:px-8 transition-all duration-500 ease-in-out ${
hasSearched ? 'mt-8' : 'mt-[15vh]'
}`}
>
Expand Down Expand Up @@ -123,7 +123,7 @@ export default function Index() {
</div>

{hasSearched && (
<div className="w-full py-4 px-4 sm:px-6 lg:px-8 lg:max-w-3xl">
<div className="w-full lg:max-w-3xl py-4 px-4 sm:px-6 lg:px-8">
<h2 className="text-2xl font-bold mb-4">Search Results</h2>
{data ? (
<ul className="space-y-4">
Expand Down

0 comments on commit 97063d7

Please sign in to comment.