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

View file

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