Skip to content

Instantly share code, notes, and snippets.

@wesbos
Created June 14, 2022 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesbos/48f3b852e4f93f18a03d01bd1a65f0d8 to your computer and use it in GitHub Desktop.
Save wesbos/48f3b852e4f93f18a03d01bd1a65f0d8 to your computer and use it in GitHub Desktop.
function fixNotionPadding() {
Array.from(document.querySelectorAll(`[style*="padding-left: 96px"]`)).forEach(el => el.style.padding = 0);
requestAnimationFrame(fixNotionPadding);
}
fixNotionPadding();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment