Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export default function RootLayout({
return (
<html lang='en'>
<body className={inter.className}>
<div className='min-h-screen bg-white'>
<div className='flex min-h-screen flex-col bg-white'>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

<Header />
<main>{children}</main>
<main className='flex grow flex-col'>{children}</main>
<Toaster richColors position='bottom-center' />
<Footer />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/student-group/StudentGroups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function StudentGroups({ orgs }: StudentGroupsProps) {
const totalPages = Math.ceil(igCardsToDisplay.length / PAGE_SIZE);

return (
<div className='relative flex'>
<div className='relative flex flex-1'>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UI changes works locally

{orgs.length === 0 && (
<div className='bg-opacity-60 absolute inset-0 z-50 flex items-center justify-center bg-white'>
<div className='h-24 w-24'>
Expand Down