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

28 lines
425 B
JavaScript

export default {
name: 'Post',
selector: '.Status',
states: {
selected: '.-focused',
},
validInnerComponents: [
'Text',
'Link',
'Icon',
'Border',
'Avatar',
'PollGraph',
],
defaultRules: [
{
directives: {
background: '--bg',
},
},
{
state: ['selected'],
directives: {
background: '--inheritedBackground, 10',
},
},
],
}