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

27 lines
420 B
JavaScript
Raw Normal View History

export default {
name: 'Attachment',
selector: '.Attachment',
notEditable: true,
validInnerComponents: [
'Border',
2025-02-18 00:07:45 +02:00
'Button',
2024-02-21 14:05:26 +02:00
'Input'
],
defaultRules: [
{
directives: {
roundness: 3
}
2024-02-19 00:10:10 +02:00
},
{
2025-02-18 00:07:45 +02:00
component: 'Button',
2025-03-13 01:30:15 +02:00
parent: {
component: 'Attachment'
},
2024-02-19 00:10:10 +02:00
directives: {
background: '#FFFFFF',
opacity: 0.5
}
}
]
}