Skip to content

Commit

Permalink
correct placement of login button
Browse files Browse the repository at this point in the history
For medium size pages there is a max-width for the container, causing the UI to be left aligned. Making sure the container width stays maximum fixes this problem
  • Loading branch information
djimmo authored Nov 13, 2024
1 parent fb36ca4 commit e391edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/www/app/(app)/examples/authentication/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function AuthenticationPage() {
className="hidden dark:block"
/>
</div>
<div className="container relative hidden h-[800px] flex-col items-center justify-center md:grid lg:max-w-none lg:grid-cols-2 lg:px-0">
<div className="container relative hidden h-[800px] flex-col items-center justify-center md:grid md:max-w-none lg:max-w-none lg:grid-cols-2 lg:px-0">
<Link
href="/examples/authentication"
className={cn(
Expand Down

0 comments on commit e391edc

Please sign in to comment.