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

35 lines
513 B
JavaScript
Raw Normal View History

export default {
name: 'Popover',
selector: '.popover',
lazy: true,
2024-02-11 21:11:28 +00:00
variants: {
modal: '.modal'
},
validInnerComponents: [
'Text',
'Link',
'Icon',
2024-02-13 00:09:43 +00:00
'Border',
'Button',
'ButtonUnstyled',
'Input',
'MenuItem',
'Post'
],
defaultRules: [
{
directives: {
2024-02-11 21:11:28 +00:00
background: '--bg',
shadow: [{
x: 2,
y: 2,
blur: 3,
spread: 0,
color: '#000000',
alpha: 0.5
}]
}
}
]
}