diff options
author | Vitaly Takmazov | 2018-10-21 17:38:13 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | fce489166a741e115d8677630bac03bc72cc86b0 (patch) | |
tree | 5c1af54fb8bf786e0bece7975573fa87305c8c74 | |
parent | b6e3275596720292320402da000b5b5a34324a6f (diff) |
PM styling
-rw-r--r-- | vnext/src/components/PM.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/components/PM.js b/vnext/src/components/PM.js index c8812a02..c9d1cc37 100644 --- a/vnext/src/components/PM.js +++ b/vnext/src/components/PM.js @@ -22,7 +22,7 @@ export default function PM(props) { function bubbleStyle(me, msg) { const isMe = me.uid === msg.user.uid; const color = isMe ? '#fff' : '#222'; - const background = isMe ? '#0076ff' : '#eee'; + const background = isMe ? '#ec4b98' : '#eee'; return { background: background, color: color, |