diff --git a/public/popup.css b/public/popup.css index f7e173e3..fda29da8 100644 --- a/public/popup.css +++ b/public/popup.css @@ -63,13 +63,6 @@ cursor: pointer; } -.uuidButton { - height: 20px; - padding: 0 5px; - - cursor: pointer; -} - #videoInfo>p, #videoInfo>div>p { margin: 0; } diff --git a/src/popup.ts b/src/popup.ts index 7025b286..d13af4a0 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -429,7 +429,7 @@ async function runThePopup(messageListener?: MessageListener): Promise { const uuidButton = document.createElement("img"); uuidButton.id = "sponsorTimesCopyUUIDButtonContainer" + UUID; - uuidButton.className = "uuidButton"; + uuidButton.className = "voteButton"; uuidButton.src = chrome.extension.getURL("icons/clipboard.svg"); uuidButton.addEventListener("click", () => navigator.clipboard.writeText(UUID));