Can you guys try putting this into your extra JS and CSS and seeing if it works?
JSconst nutContainer = document.createElement('div');
nutContainer.style.position = 'absolute';
nutContainer.style.top = '0';
nutContainer.style.left = '0';
nutContainer.style.width = '100%';
nutContainer.style.pointerEvents = 'none';
nutContainer.style.zIndex = '-1';
document.body.appendChild(nutContainer);
const nutEmojis = ['🥜', '🌰'];
function updateContainerHeight() {
nutContainer.style.height = document.body.scrollHeight + 'px';
Post too long. Click here to view the full text.