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