pleroma-fe/src/components/chat/chat.style.js

19 lines
278 B
JavaScript
Raw Normal View History

2024-02-19 15:11:59 +02:00
export default {
name: 'Chat',
selector: '.chat-message-list',
validInnerComponents: [
'Text',
'Link',
'Icon',
'Avatar',
'ChatMessage'
],
defaultRules: [
2024-03-06 20:35:03 +02:00
{
directives: {
background: '--bg',
blur: '5px'
}
}
2024-02-19 15:11:59 +02:00
]
}