Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/**
* offerup.com - Infinite scroll doesn't work
*
* The site uses IntersectionObserver to show new items on the page,
* as the page being scrolled and it doesn't work with with
* Dynamic Toolbar enabled. Adding an empty element after the content
* to make up for the height of the dynamic toolbar makes it work.
*/
#__next::after {
display: block;
width: 100%;
height: 10px;
content: "";
}