Skip to content
Open
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
2 changes: 1 addition & 1 deletion components/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ export default function Layout({ children }: ILayoutProps): React.JSX.Element {
return <GenericPostLayout post={post as unknown as IPosts['blog'][number]}>{children}</GenericPostLayout>;
}

return <div className='min-h-screen bg-white dark:bg-dark-background transition-colors duration-300'>{children}</div>;
return <div className='flex-1 bg-white dark:bg-dark-background transition-colors duration-300'>{children}</div>;
}
2 changes: 1 addition & 1 deletion components/navigation/FilterDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function FilterDropdown({ className = '', onChange, options, sele
<div
id={listboxId}
data-testid='FilterDropdown-options'
className='absolute left-0 z-50 mt-1 max-h-72 min-w-full overflow-y-auto rounded-md border border-gray-300 bg-white py-1 shadow-lg dark:border-gray-700 dark:bg-dark-card md:min-w-64'
className='absolute left-0 z-40 mt-1 max-h-72 min-w-full overflow-y-auto rounded-md border border-gray-300 bg-white py-1 shadow-lg dark:border-gray-700 dark:bg-dark-card md:min-w-64'
>
{options.map((option) => {
const isSelected = option.value === selected;
Expand Down
Loading