Skip to content

Commit

Permalink
fix:minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
Paribesh01 committed Oct 31, 2024
1 parent f974b0d commit 30ab193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/JobManagementTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const JobManagementTable = ({ jobs, searchParams }: props) => {
};

return (
<div className="min-h-screen sm:max-w-7xl max-w-96 mx-auto p-4 sm:p-8 text-gray-900 dark:text-gray-100">
<div className="min-h-screen sm:max-w-7xl max-w-full mx-auto p-2 sm:p-8 text-gray-900 dark:text-gray-100">
<div className="flex flex-col sm:flex-row justify-between mb-6">
<h1 className="text-2xl font-bold mb-4 sm:mb-0">Manage Jobs</h1>
<Link href={'/create'}>
Expand Down
3 changes: 1 addition & 2 deletions src/components/ManageRecruiters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,8 @@ const ManageRecruiters = ({ recruiters }: props) => {
setCurrentPage(page);
}
};

return (
<div className="min-h-screen w-full max-w-6xl mx-auto p-6 md:p-8 text-gray-900 dark:text-gray-100">
<div className="min-h-screen w-full max-w-6xl mx-auto p-2 md:p-8 text-gray-900 dark:text-gray-100">
<div className="flex flex-col md:flex-row justify-between mb-6">
<h1 className="text-2xl font-bold mb-4 md:mb-0">Manage Recruiters</h1>
</div>
Expand Down

0 comments on commit 30ab193

Please sign in to comment.