Skip to content

Instantly share code, notes, and snippets.

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 ssougnez/dd43ee8ce67afc172a83baf76ce9def0 to your computer and use it in GitHub Desktop.
Save ssougnez/dd43ee8ce67afc172a83baf76ce9def0 to your computer and use it in GitHub Desktop.
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
.messages {
min-height: 500px;
max-height: 500px;
overflow-y: auto;
border: 1px solid #000;
margin-bottom: 10px;
}
.input-zone {
display: flex;
flex-direction: row;
align-items: center;
}
.input-zone__input {
flex: 1;
margin-right: 10px;
}
.message__author {
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment