fediverse stupid fix
This commit is contained in:
parent
38201f86dd
commit
832aed2ffd
2 changed files with 16 additions and 1 deletions
|
@ -19,3 +19,18 @@ footer {
|
||||||
|
|
||||||
height: 5vh;
|
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;
|
||||||
|
}
|
||||||
|
|
|
@ -84,7 +84,7 @@ async function GetAccount() {
|
||||||
// Build the fields
|
// Build the fields
|
||||||
let Field = "<div style=\"display: flex; justify-content: center;\">";
|
let Field = "<div style=\"display: flex; justify-content: center;\">";
|
||||||
for (let i of post.account.fields) {
|
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>";
|
Field += "</div>";
|
||||||
AccountDescription.innerHTML += Field;
|
AccountDescription.innerHTML += Field;
|
||||||
|
|
Loading…
Add table
Reference in a new issue