Skip to content

Commit 2c402a2

Browse files
committed
Fixed centering of recruiter job card
1 parent 3b66911 commit 2c402a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

frontend/src/pages/RecruiterHome.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function RecruiterHome() {
129129
<Box sx={{ flexGrow: 1, marginTop: "20px" }}>
130130
<Grid container spacing={2}>
131131
{jobs.map((job) => (
132-
<Grid item xs={12} md={12} key={job.id}>
132+
<Grid item xs={12} key={job.id}>
133133
<Card className="jobContainer">
134134
<CardContent className="CardContent">
135135
<Typography

frontend/src/styles/RecruiterHome.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
min-width: 500px;
3232
min-height: 200px;
3333
margin-bottom: 20px;
34-
margin-left: 20px;
35-
margin-right: 20px;
34+
margin-left: auto;
35+
margin-right: auto;
3636
}
3737

3838
.jobTitle {

0 commit comments

Comments
 (0)