fix cli more

This commit is contained in:
ThatOneCalculator 2023-03-19 02:08:08 -07:00
parent 2dcf88b732
commit 0fa22b8598
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
2 changed files with 4 additions and 4 deletions

View File

@ -14,6 +14,7 @@ main {
} }
#tl > div > header { #tl > div > header {
font-weight: 700; font-weight: 700;
display: inline-flex;
} }
img { img {
@ -26,14 +27,13 @@ img {
text-align: center; text-align: center;
} }
* {
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
}
#calckey_app { #calckey_app {
display: none !important; display: none !important;
} }
body, body,
html { html {
font-family: BIZ UDGothic, Roboto, HelveticaNeue, Arial, sans-serif;
background-color: #191724; background-color: #191724;
color: #e0def4; color: #e0def4;
justify-content: center; justify-content: center;

View File

@ -49,7 +49,7 @@ window.onload = async () => {
const name = document.createElement("p"); const name = document.createElement("p");
const avatar = document.createElement("img") const avatar = document.createElement("img")
name.textContent = `${note.user.name} @${note.user.username}`; name.textContent = `${note.user.name} @${note.user.username}`;
avatar.src = note.user.avatar; avatar.src = note.user.avatarUrl;
const text = document.createElement("div"); const text = document.createElement("div");
text.textContent = `${note.text}`; text.textContent = `${note.text}`;
el.appendChild(header); el.appendChild(header);