pleroma-fe/src/components/chat_message/chat_message.style.js
2026-01-06 16:22:52 +02:00

22 lines
415 B
JavaScript

export default {
name: 'ChatMessage',
selector: '.chat-message',
variants: {
outgoing: '.outgoing',
},
validInnerComponents: ['Text', 'Icon', 'Border', 'PollGraph'],
defaultRules: [
{
directives: {
background: '--bg, 2',
backgroundNoCssColor: 'yes',
},
},
{
variant: 'outgoing',
directives: {
background: '--bg, 5',
},
},
],
}