missed one icon

This commit is contained in:
ygg2 2024-08-29 14:50:52 -04:00
parent d19a17bc3a
commit 20f5b7d24b
3 changed files with 6 additions and 7 deletions

View file

@ -95,9 +95,8 @@ class Channel {
let expires = 1800;
const copycontainer = document.createElement("div");
copycontainer.classList.add("copycontainer");
const copy = document.createElement("img");
copy.src = "/icons/copy.svg";
copy.classList.add("copybutton", "svgtheme");
const copy = document.createElement("span");
copy.classList.add("copybutton", "svgtheme", "svg-copy");
copycontainer.append(copy);
copycontainer.onclick = _ => {
if (text.textContent) {

View file

@ -109,9 +109,8 @@ class Channel{
let expires=1800;
const copycontainer=document.createElement("div");
copycontainer.classList.add("copycontainer")
const copy=document.createElement("img");
copy.src="/icons/copy.svg";
copy.classList.add("copybutton","svgtheme");
const copy=document.createElement("span");
copy.classList.add("copybutton","svgtheme","svg-copy");
copycontainer.append(copy);
copycontainer.onclick=_=>{
if(text.textContent){

View file

@ -1819,7 +1819,8 @@ form div{
border:solid .03in var(--black);
}
.copybutton{
display:inline-block;
height:.2in;
width:.25in;
}
.copycontainer{