chat functional
This commit is contained in:
@ -15,3 +15,56 @@
|
||||
{
|
||||
margin: 10px 10px 0 0;
|
||||
}
|
||||
|
||||
#app #chats {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
text-align: left;
|
||||
}
|
||||
#app #users {
|
||||
margin-right: 50px;
|
||||
}
|
||||
|
||||
#app #chat {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
width: 60%;
|
||||
/*border: 4px solid green;*/
|
||||
overflow:hidden;
|
||||
/*overflow-y: scroll;
|
||||
overflow-x: hidden;*/
|
||||
}
|
||||
|
||||
#app #input_chat{
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
/*width: calc(100% - 8px);*/
|
||||
width: 100%;
|
||||
border: none;
|
||||
outline: none;
|
||||
border-bottom: 2px solid green;
|
||||
caret-color: green;
|
||||
}
|
||||
|
||||
#app #you {
|
||||
text-align: left;
|
||||
position: relative;
|
||||
max-width: 48%;
|
||||
left: 10px;
|
||||
margin: 5px 0 0 0;
|
||||
color: green;
|
||||
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#app #other {
|
||||
text-align: right;
|
||||
position: relative;
|
||||
max-width: 48%;
|
||||
margin: 5px 0 0 auto;
|
||||
right: 10px;
|
||||
color: red;
|
||||
|
||||
/* permet le retour à la ligne à la place de dépasser*/
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
Reference in New Issue
Block a user