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

27 lines
457 B
JavaScript
Raw Normal View History

export default {
name: 'Popover',
selector: '.popover',
lazy: true,
2024-02-11 23:11:28 +02:00
variants: {
2026-01-06 16:22:52 +02:00
modal: '.modal',
2024-02-11 23:11:28 +02:00
},
2026-01-06 16:22:52 +02:00
validInnerComponents: ['MenuItem'],
defaultRules: [
{
directives: {
2024-02-11 23:11:28 +02:00
background: '--bg',
blur: '10px',
2026-01-06 16:22:52 +02:00
shadow: [
{
x: 2,
y: 2,
blur: 3,
spread: 0,
color: '#000000',
alpha: 0.5,
},
],
},
},
],
}