We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc9a02e commit 11d1919Copy full SHA for 11d1919
1 file changed
html/chat-room/html/chat-room-display/chat-room-display.html
@@ -13,6 +13,9 @@
13
#view > div:nth-child(even)
14
{background: #e0e0e0}
15
16
+ #empty
17
+ {font-size:18px;font-weight:bold;color:whitesmoke;background:transparent !important}
18
+
19
.msg
20
{display:flex;gap:30px;align-items:center;padding:10px 20px}
21
.msg:hover
@@ -33,6 +36,9 @@
33
36
34
37
35
38
<section id=view>
39
+ <div id=empty>
40
+ Empty
41
+ </div>
42
</section>
43
44
@@ -106,6 +112,10 @@
106
112
107
113
display.list(list)
108
114
115
+ if(msgs.length!=0){
116
+ empty.remove();
117
+ }
118
109
119
}//result
110
120
111
121
0 commit comments