Make filter editor / bulk editor 'sticky' on scroll

This commit is contained in:
Michael Shamoon 2021-04-14 09:00:30 -07:00
parent 1091387f48
commit 6f0c14cc07
4 changed files with 22 additions and 5 deletions

View file

@ -34,3 +34,12 @@ $paperless-card-breakpoints: (
right: 0 !important;
left: auto !important;
}
.sticky-top {
z-index: 1000; // below main navbar
top: calc(7rem - 2px); // height of navbar (mobile)
@media (min-width: 768px) {
top: 3.5rem; // height of navbar
}
}