30 lines
468 B
SCSS
30 lines
468 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.messages-list {
|
|
max-height: 350px;
|
|
overflow-y: scroll;
|
|
border: 1px solid $border-grey;
|
|
background: $light-grey;
|
|
padding: 2 * $default-spacer;
|
|
margin-bottom: $default-spacer;
|
|
border-radius: 4px;
|
|
|
|
.message {
|
|
width: 80%;
|
|
|
|
&.from-me {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.messagerie {
|
|
.message-textarea {
|
|
margin-bottom: $default-spacer;
|
|
}
|
|
|
|
.form input[type="file"] {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|