Skip to content

Instantly share code, notes, and snippets.

@bookercodes
Last active June 4, 2018 16:15
Show Gist options
  • Save bookercodes/6bd032e30db14819313c00e85e96065c to your computer and use it in GitHub Desktop.
Save bookercodes/6bd032e30db14819313c00e85e96065c to your computer and use it in GitHub Desktop.
/* ./src/index.css */
body {
font-family: BlinkMacSystemFont, sans-serif;
margin: 0;
padding: 0;
}
.username-form {
padding: 10px;
}
.username-form button {
margin-top: 10px;
}
.wrapper {
height: 100vh;
display: flex;
}
.online-list {
/* box-shadow: 0 -8px 20px 2px #DEDEE3; */
background: #F9F9FB;
}
.chat {
/* background: #F4FAFE; */
display: flex;
flex-direction: column;
flex: 1;
}
.send-message-form{
padding: 10px 15px 10px 15px;
display: flex;
}
.send-message-form div {
flex: 1;
margin-right: 5px;
}
.online-list-item {
width: 10px;
height: 10px;
border-radius: 50%;
margin-right: 5px;
}
li span {
padding-right: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment