Skip to content

Instantly share code, notes, and snippets.

@BrightnBubbly
Created May 4, 2020 04:58
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 BrightnBubbly/b9a020451e19b1f0d791cee7e0d0febc to your computer and use it in GitHub Desktop.
Save BrightnBubbly/b9a020451e19b1f0d791cee7e0d0febc to your computer and use it in GitHub Desktop.
.main {
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh;
.chat-box {
width: 300px;
display: flex;
flex-direction: column;
.message-area {
border-radius: 8px 8px 0 0;
max-height: 450px;
height: 450px;
padding: 0 20px 20px 20px;
overflow: auto;
background-color: #f2f5e7;
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
padding: 10px 0 0;
p {
font-size: 14px;
font-weight: 600;
}
img {
width: 40px;
height: 40px;
border-radius: 50%;
border: 1px solid #ec3062;
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment