Archived
1
0
This commit is contained in:
Jeff 2019-03-02 15:13:24 -05:00
parent 41682f1712
commit bf43469a89
2 changed files with 5 additions and 0 deletions

View File

@ -550,3 +550,7 @@ background-repeat: repeat;
.mod {
color: red;
}
.post-link {
float: right;
}

View File

@ -57,6 +57,7 @@
var link = document.createElement("a");
link.href = u.toString();
link.innerText = "[Link]";
link.setAttribute("class", "post-link")
e.appendChild(document.createElement("hr"));
e.appendChild(link);
}