Skip to content

Commit 992ee95

Browse files
committed
alyout changes
1 parent 9659d4e commit 992ee95

File tree

1 file changed

+5
-2
lines changed
  • frontend/src/components/job-board-layout

1 file changed

+5
-2
lines changed

frontend/src/components/job-board-layout/index.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@ export const JobBoardLayout = ({
4949
onMobileShowOnly === "jobListing" ? "desktop" : "mobile"
5050
}
5151
as="ul"
52-
fullScreenHeight
52+
position="sticky"
53+
style={{
54+
top: 0,
55+
}}
5356
overflow="scroll"
57+
fullScreenHeight
5458
>
5559
{jobListings.map((job) => (
5660
<JobListingAccordion key={job.id} job={job} />
@@ -62,7 +66,6 @@ export const JobBoardLayout = ({
6266
showFrom={
6367
onMobileShowOnly === "jobListings" ? "desktop" : "mobile"
6468
}
65-
fullScreenHeight
6669
>
6770
<Heading size={2}>{jobListing.title}</Heading>
6871
<Spacer size="small" />

0 commit comments

Comments
 (0)