We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9659d4e commit 992ee95Copy full SHA for 992ee95
frontend/src/components/job-board-layout/index.tsx
@@ -49,8 +49,12 @@ export const JobBoardLayout = ({
49
onMobileShowOnly === "jobListing" ? "desktop" : "mobile"
50
}
51
as="ul"
52
- fullScreenHeight
+ position="sticky"
53
+ style={{
54
+ top: 0,
55
+ }}
56
overflow="scroll"
57
+ fullScreenHeight
58
>
59
{jobListings.map((job) => (
60
<JobListingAccordion key={job.id} job={job} />
@@ -62,7 +66,6 @@ export const JobBoardLayout = ({
62
66
showFrom={
63
67
onMobileShowOnly === "jobListings" ? "desktop" : "mobile"
64
68
65
69
70
<Heading size={2}>{jobListing.title}</Heading>
71
<Spacer size="small" />
0 commit comments