changed to async

This commit is contained in:
2021-05-24 13:33:46 +02:00
parent 0601f52661
commit eea681d435
3 changed files with 130 additions and 73 deletions

View File

@ -54,7 +54,6 @@ div#windows {
div#windows > *,
main {
backdrop-filter: blur(32px);
border: 1px solid var(--bg-win);
background: var(--bg-win);
border-radius: 4px;
@ -68,6 +67,7 @@ main {
}
div#windows > * {
backdrop-filter: blur(32px);
padding: 0.5em 1em;
}
@ -199,6 +199,7 @@ main .chat-history {
height: calc(100% - 3em);
overflow-y: scroll;
box-sizing: border-box;
backdrop-filter: blur(4px);
}
main .chat-input-wrapper {
@ -207,6 +208,7 @@ main .chat-input-wrapper {
border-top: 1px solid var(--bg-win);
padding: 0.5em 1em;
box-sizing: border-box;
backdrop-filter: blur(32px);
}
main .chat-input-wrapper input {
@ -218,6 +220,7 @@ main .chat-input-wrapper input {
box-sizing: border-box;
outline: none;
padding: 0.25em 1em;
font-size: 0.875rem;
}
main .chat .message {
@ -228,5 +231,6 @@ main .chat .message {
display: block;
width: fit-content;
width: -moz-fit-content;
background-color: var(--bg);
background-color: rgba(255, 255, 255, 0.875);
font-size: 0.875rem;
}