Update chat UI(#84)

This commit is contained in:
Phuoc Anh Kha Le 2023-09-25 02:12:06 -05:00 committed by GitHub
parent db37cb4c40
commit b417c08bfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 124 additions and 89 deletions

View file

@ -6,6 +6,7 @@
#content {
padding-top: 0;
margin-bottom: 0;
}
::-webkit-scrollbar {
@ -57,7 +58,7 @@
.profile-pic {
height: 2.6em;
width: 2.6em;
border-radius: 0.3em;
border-radius: 50%;
margin-top: 0.1em;
float: left;
}
@ -106,6 +107,16 @@
#setting {
position: relative;
}
#setting-button {
height: 2.3em;
width: 2.5em;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
padding-top: 2px;
}
.status-user {
display: flex;
flex-direction: column;
@ -122,15 +133,20 @@
align-items: center;
gap: 1em;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
text-align: left;
}
#chat-input {
padding: 10px 20px;
font-size: 16px;
border-radius: 20px;
border-radius: 100px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease-in-out;
width: 80%;
resize: none;
height: 100%;
height: 80%;
max-height: 200px;
overflow-y: auto;
}
#chat-input:focus {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
@ -162,11 +178,13 @@
stroke-width: 1;
}
.info-pic {
border-radius: 5px;
margin-left: 1em;
border-radius: 50%;
}
#chat-info {
height: 3em;
padding-left: 0.75em;
display: flex;
align-items: center;
}
@media (min-width: 800px) {
@ -175,26 +193,30 @@
overflow:hidden;
}
#chat-input-container {
padding-left: 5%;
padding-left: 3%;
}
#chat-area {
padding-bottom: 1.5em;
}
.back-button {
display: none;
}
}
@media (max-width: 799px) {
html, body {
max-width: 100%;
overflow-x: hidden;
}
#mobile ul {
width: 100%;
}
.info-pic {
margin-left: 0.5em;
}
.active-span {
display: none;
}
#chat-area {
display: none;
}
.back-button {
margin-right: 1em;
font-size: 1.5em;
}
}
</style>
{% endcompress %}