aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/helpers/BubbleStyle.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/ui/helpers/BubbleStyle.js')
-rw-r--r--vnext/src/ui/helpers/BubbleStyle.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/vnext/src/ui/helpers/BubbleStyle.js b/vnext/src/ui/helpers/BubbleStyle.js
index f8b0f4eb..f784e1e3 100644
--- a/vnext/src/ui/helpers/BubbleStyle.js
+++ b/vnext/src/ui/helpers/BubbleStyle.js
@@ -3,23 +3,6 @@
* @param {import('../../api').Message} msg
* @returns {React.CSSProperties}
*/
-export function bubbleStyle(me, msg) {
- const isMe = me.uid === msg.user.uid;
- const color = isMe ? '#fff' : '#222';
- const background = isMe ? '#ec4b98' : 'var(--border-color)';
- return {
- background: background,
- color: color,
- padding: '12px',
- display: 'inline-block'
- };
-}
-
-/**
- * @param {import('../../api').User} me
- * @param {import('../../api').Message} msg
- * @returns {React.CSSProperties}
- */
export function chatItemStyle(me, msg) {
const isMe = me.uid === msg.user.uid;
const alignment = isMe ? 'flex-end' : 'flex-start';