From 8d7b66d7d4cd08eecc89d04198f20b971b4fb503 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 9 Jul 2019 22:12:47 -0400 Subject: [PATCH] Moved don't show again button to a better spot --- content.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content.js b/content.js index 7a9a78de..cbfad32f 100644 --- a/content.js +++ b/content.js @@ -134,7 +134,7 @@ function openSkipNotice(){ var noticeElement = document.createElement("div"); noticeElement.id = 'sponsorSkipNotice' - noticeElement.style.minHeight = "75px"; + noticeElement.style.minHeight = "100px"; noticeElement.style.minWidth = "400px"; noticeElement.style.backgroundColor = "rgba(153, 153, 153, 0.8)"; noticeElement.style.fontSize = "24px"; @@ -174,6 +174,7 @@ function openSkipNotice(){ buttonContainer.appendChild(goBackButton); buttonContainer.appendChild(hideButton); + buttonContainer.appendChild(document.createElement("br")); buttonContainer.appendChild(dontShowAgainButton); noticeElement.appendChild(noticeMessage);