ministryofjustice / intranet

Intranet used by the Ministry of Justice and agencies
MIT License
7 stars 1 forks source link

Fixes the search filter panel on scroll when users are browsing. #745

Open wilson1000 opened 2 weeks ago

EarthlingDavey commented 2 weeks ago

Hey @wilson1000 , I just spotted this PR even though you haven't requested a review.

I've done a similar thing on a different website, it might be worth checking to see if the css property position: sticky would be suitable here. If it's suitable it would mean you don't really need the custom js.

With a quick test in browser developer tools, adding the below css seems like it might work.

@media only screen and (min-width: 740px) {
    .l-main .l-secondary {
        ...
        position: sticky;
        top: 20px;
    }
}