Skip to content

Commit

Permalink
chore(pilot-app): update page size and background (#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
frontendphil authored Feb 5, 2025
1 parent 85cd741 commit 1c23061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployables/app/app/components/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ type PageProps = PropsWithChildren<{ fullWidth?: boolean }>

export const Page = ({ children, fullWidth = false }: PageProps) => {
return (
<div className="bg-linear-to-b flex flex-1 flex-shrink-0 flex-col overflow-y-auto from-white to-zinc-50 dark:from-zinc-950 dark:via-zinc-950 dark:to-gray-900">
<div className="bg-radial-[at_100%_100%] flex flex-1 flex-shrink-0 flex-col overflow-y-auto from-white to-zinc-50 dark:from-gray-900 dark:to-zinc-950">
<div
className={classNames(
'mx-16 mt-16 flex flex-1 flex-col',
fullWidth === false && 'w-3/4 px-1 md:w-1/2 2xl:w-2/5',
fullWidth === false && 'xl:w-3/5 2xl:w-2/5',
)}
>
{children}
Expand Down

0 comments on commit 1c23061

Please sign in to comment.