my-chat-room/apps/chat-room/src/app/app.component.scss

32 lines
453 B
SCSS
Raw Normal View History

2020-10-09 13:32:53 +00:00
2020-10-09 16:21:21 +00:00
.messages-container{
2020-10-09 13:32:53 +00:00
display: flex;
2020-10-09 16:21:21 +00:00
flex-flow: column-reverse nowrap;
margin: 0px;
border: 1px solid black;
min-height: 80vh;
max-height: 80vh;
overflow-y: scroll;
2020-10-09 13:32:53 +00:00
}
2020-10-09 16:21:21 +00:00
.message {
padding: 0.3rem;
&:nth-child(odd){
background: #EEEEEE;
}
&:nth-child(even) {
background: #FFFFFF;
}
2020-10-09 13:32:53 +00:00
}
2020-10-09 16:21:21 +00:00
input {
width: 100%;
margin: 0px;
margin-top: 1rem;
2020-10-09 13:32:53 +00:00
}
2020-10-09 16:21:21 +00:00
.input-section {
2020-10-09 13:32:53 +00:00
display: grid;
2020-10-09 16:21:21 +00:00
grid-template-columns: 1fr 200px 30px;
2020-10-09 13:32:53 +00:00
}