fix(content): wrong overflow fixing

This commit is contained in:
Juan José Vílchez 2021-02-06 12:47:43 +01:00
parent ebc380a671
commit 29656d1ae0

View File

@ -7,8 +7,8 @@ if (!!window.chrome) {
};
const fix = () => {
document.body.style = "overflow-y: unset !important;";
document.documentElement.style = "overflow-y: unset !important;";
document.body.style.overflowY = "unset";
document.documentElement.style.overflowY = "unset";
};
const retrieveElement = (match) => {