Attempt to clarify installation instructions a little
[vchess.git] / client / src / components / Chat.vue
index 25898ce..bce0ba0 100644 (file)
@@ -66,7 +66,7 @@ export default {
         msg: chatTxt,
         name: this.st.user.name,
         // SID is required only for anonymous users (in live games)
-        sid: this.st.user.id  == 0 ? this.st.user.sid : null
+        sid: this.st.user.id == 0 ? this.st.user.sid : null
       };
       this.$emit("mychat", chat);
       this.chats.unshift(chat);
@@ -84,10 +84,10 @@ export default {
 
 <style lang="sass" scoped>
 .name
-  color: #abb2b9
+  color: #839192
 
 .my-chatmsg
-  color: #7d3c98
+  color: #6c3483
 .opp-chatmsg
-  color: #2471a3
+  color: #1f618d
 </style>