Skip to content

Instantly share code, notes, and snippets.

@Iheanacho-ai
Last active July 24, 2022 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Iheanacho-ai/93956e8a24effe332efe44e4d15a8347 to your computer and use it in GitHub Desktop.
Save Iheanacho-ai/93956e8a24effe332efe44e4d15a8347 to your computer and use it in GitHub Desktop.
.chat{
width: 30%;
height: 600px;
background: #fff;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-radius: 7px;
margin: 3% auto;
}
.user-chat{
width: 100%;
height: 100%;
position: relative;
}
.user-chat-header{
width: 100%;
height: 50px;
background-color: #111;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}
.messages{
padding: 20px;
width: 100%;
height: 74.7%;
overflow-y: scroll;
}
.input-area{
width: 100%;
height: 100px;
bottom: 0px;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid #111;
}
.message-input{
width: 40%;
height: 40px;
border-radius: 5px;
padding: 5px;
}
.send{
width: 50px;
height: 40px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment