fediverse stupid fix

This commit is contained in:
CatAClock 2025-05-25 16:55:49 -07:00
parent 38201f86dd
commit 832aed2ffd
2 changed files with 16 additions and 1 deletions

View file

@ -19,3 +19,18 @@ footer {
height: 5vh;
}
/* Mastodon things */
.Entry {
border-left: 2px solid;
border-right: 1px dashed;
border-top: 2px solid;
border-bottom: 2px solid;
}
.Exitry {
border-left: 1px dashed;
border-right: 2px solid;
border-top: 2px solid;
border-bottom: 2px solid;
}

View file

@ -84,7 +84,7 @@ async function GetAccount() {
// Build the fields
let Field = "<div style=\"display: flex; justify-content: center;\">";
for (let i of post.account.fields) {
Field += "<b>" + i.name + "</b><em>" + i.value + "</em>";
Field += "<b class=\"Entry\">" + i.name + "</b><em class=\"Exitry\">" + i.value + "</em>";
}
Field += "</div>";
AccountDescription.innerHTML += Field;