From 6d5adce4598fd2be9982f60e2c3dbaebdedd49bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jose=CC=81=20Vi=CC=81lchez?= Date: Wed, 6 Jan 2021 19:11:20 +0100 Subject: [PATCH] fix(scripts): wrong overflow override --- src/scripts/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/content.js b/src/scripts/content.js index e8f0417..67446bd 100644 --- a/src/scripts/content.js +++ b/src/scripts/content.js @@ -1,6 +1,6 @@ if (!!window.chrome) { const fix = () => { - document.body.style = "overflow: auto!important;"; + document.body.style = "overflow-y: unset !important;"; }; const observe = () => {