File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
apps/redi-talent-pool/src/pages/app/job-listing Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 235
235
}
236
236
237
237
.expired-job-listing-overlay {
238
- position : fixed ;
238
+ position : absolute ;
239
239
top : 0 ;
240
240
left : 0 ;
241
241
right : 0 ;
242
242
bottom : 0 ;
243
243
background : rgba (255 , 255 , 255 , 0.9 );
244
244
backdrop-filter : blur (4px );
245
245
display : flex ;
246
- align-items : center ;
246
+ align-items : flex-start ;
247
247
justify-content : center ;
248
248
z-index : 1000 ;
249
+ padding-top : 200px ;
249
250
}
250
251
251
252
.expired-job-listing-message {
255
256
background : white ;
256
257
border-radius : 8px ;
257
258
box-shadow : 0 2px 8px rgba (0 , 0 , 0 , 0.1 );
259
+ margin : 0 1rem ;
258
260
259
261
p {
260
262
font-size : 1.1rem ;
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ export function JobListing() {
261
261
262
262
return (
263
263
< LoggedIn >
264
- < div className = "jobListing" >
264
+ < div className = "jobListing" style = { { position : 'relative' } } >
265
265
{ isDesktop ? (
266
266
< >
267
267
< JobListingHeader jobListing = { jobListing } />
@@ -282,7 +282,6 @@ export function JobListing() {
282
282
< JobListingContact jobListing = { jobListing } />
283
283
</ div >
284
284
</ div >
285
- { isExpired && < ExpiredJobListingOverlay /> }
286
285
</ >
287
286
) : (
288
287
< >
@@ -294,9 +293,9 @@ export function JobListing() {
294
293
< JobListingAboutTheCompany jobListing = { jobListing } />
295
294
< JobListingContact jobListing = { jobListing } />
296
295
</ div >
297
- { isExpired && < ExpiredJobListingOverlay /> }
298
296
</ >
299
297
) }
298
+ { isExpired && < ExpiredJobListingOverlay /> }
300
299
</ div >
301
300
</ LoggedIn >
302
301
)
You can’t perform that action at this time.
0 commit comments