yandere_fe/src/components/attachment/attachment.style.js

25 lines
401 B
JavaScript
Raw Normal View History

export default {
name: 'Attachment',
selector: '.Attachment',
validInnerComponents: [
'Border',
2024-02-21 04:05:26 -08:00
'ButtonUnstyled',
'Input'
],
defaultRules: [
{
directives: {
roundness: 3
}
2024-02-18 14:10:10 -08:00
},
{
component: 'ButtonUnstyled',
parent: { component: 'Attachment' },
directives: {
background: '#FFFFFF',
opacity: 0.5
}
}
]
}