Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7 from Tau5/patch-1
Browse files Browse the repository at this point in the history
Render overlay properly on older browsers
  • Loading branch information
bean-factory committed Apr 2, 2022
2 parents cd19eb0 + c1b748e commit a0b6fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if (window.top !== window.self) {
(function () {
const i = document.createElement("img");
i.src = "https://github.com/r-PlaceTux/Overlay/raw/main/tuxoverlay.png";
i.style = "position: absolute;left: 0;top: 0;image-rendering: pixelated;width: 1000px;height: 1000px;";
i.style = "position: absolute;left: 0;top: 0;image-rendering: crisp-edges;width: 1000px;height: 1000px;";
console.log(i);
return i;
})())
Expand Down

0 comments on commit a0b6fd5

Please sign in to comment.