Skip to content

Commit

Permalink
fix: make loader less ugly
Browse files Browse the repository at this point in the history
  • Loading branch information
travis committed Oct 9, 2023
1 parent f47b9bc commit bfa55ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function RootLayout ({
}) {
return (
<html lang="en">
<body className='bg-gray-900 min-height-full'>
<body className='bg-gray-900 min-h-screen'>
<SidebarLayout>
{children}
</SidebarLayout>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Authenticator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export function AuthenticationEnsurer ({
if (agent) {
return <AuthenticationForm />
}
return <Loader className='w-12 h-12' />
return <Loader className='w-12 h-12 w-full mt-12' />
}


0 comments on commit bfa55ca

Please sign in to comment.