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

20 lines
436 B
JavaScript
Raw Normal View History

2024-01-18 12:35:25 +00:00
export default {
name: 'Underlay',
selector: 'body', // Should be '#content' but for now this is better for testing until I have proper popovers and such...
2024-01-31 15:39:51 +00:00
outOfTreeSelector: '.underlay',
2024-01-18 12:35:25 +00:00
validInnerComponents: [
'Panel'
],
defaultRules: [
{
component: 'Underlay',
// variant: 'normal',
// state: 'normal'
directives: {
background: '#000000',
opacity: 0.2
}
}
2024-01-18 12:35:25 +00:00
]
}