Use sticky instead of absolute to fix zoomed thumbnails when scrolled

pull/3735/head
Isaac Connor 2023-06-28 14:51:32 -04:00
parent 2862f47a8b
commit fd39c57038
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ li.search-choice {
.zoom-console {
transform-origin: 0% 50%;
transform: scale(5); /* (arbitray zoom value - Note if the zoom is too large, it will go outside of the viewport) */
position: absolute;
position: sticky;
z-index: 1001;
}