fix cli more
This commit is contained in:
parent
2dcf88b732
commit
0fa22b8598
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue