Added an indication for when there are noe chat messages

This commit is contained in:
Håvar Aambø Fosstveit
2018-10-30 11:48:16 +01:00
parent 636768da4b
commit f5438de2f2
2 changed files with 22 additions and 2 deletions
+18 -1
View File
@@ -6,7 +6,7 @@
}
[data-component='MessageList'] {
overflow-y: scroll;
overflow-y: auto;
flex-grow: 1;
> .message {
@@ -49,6 +49,23 @@
}
}
}
> .empty {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 20vmin;
> p {
padding: 6px 12px;
border-radius: 6px;
user-select: none;
pointer-events: none;
font-size: 20px;
color: #000;
}
}
}
[data-component='Sender'] {