remove unnecessary additional css

This commit is contained in:
caneleex 2021-03-12 11:23:25 +01:00
parent 3c50f70b3b
commit ca3732315c
2 changed files with 1 additions and 8 deletions

View file

@ -63,13 +63,6 @@
cursor: pointer;
}
.uuidButton {
height: 20px;
padding: 0 5px;
cursor: pointer;
}
#videoInfo>p, #videoInfo>div>p {
margin: 0;
}

View file

@ -429,7 +429,7 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
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));