This commit is contained in:
Sequoia Haynes 2024-12-02 18:47:23 -08:00
parent 70925d02a9
commit c0e6d30166
2 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
var copyButton = document.getElementById("copyButton")
var ipField = document.getElementById("ip")
async function copyToClipboard(){
await Clipboard.writeText(ipField.value)
await Navigator.clipboard.writeText(ipField.value)
//im too lazy to go make a proper hovertext thing, il do it later
alert("Copied!")
}

View File

@ -6,7 +6,7 @@
flex-direction: row;
justify-content: center;
align-items: center;
width:100%;
width:96%;
height:100%;
}
#navbarContainer{
@ -16,6 +16,7 @@
justify-content: center;
align-items: center;
margin:10px;;
position: fixed;
}
#navbar > a {
padding-left: 5px;
@ -42,6 +43,10 @@ p {
color: white;
font-family: "Raleway", "Arial", sans-serif;
}
a {
color: white;
font-family: "Raleway", "Arial", sans-serif;
}
#copyIp{
display: flex;
flex-direction: row;