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

42 lines
661 B
JavaScript
Raw Normal View History

2024-01-18 12:35:25 +00:00
export default {
name: 'Panel',
selector: '.panel',
2024-01-18 12:35:25 +00:00
validInnerComponents: [
'Text',
2024-01-31 15:39:51 +00:00
'Link',
2024-01-18 12:35:25 +00:00
'Icon',
2024-02-18 22:22:31 +00:00
'Border',
'Button',
'ButtonUnstyled',
'Input',
2024-02-11 21:11:28 +00:00
'PanelHeader',
'MenuItem',
'Post',
'Notification',
'Alert',
2024-02-19 13:11:59 +00:00
'UserCard',
'Chat',
2024-02-21 22:02:24 +00:00
'Attachment',
2024-02-29 15:49:56 +00:00
'Tab',
'ListItem'
],
defaultRules: [
{
directives: {
backgroundNoCssColor: 'yes',
2024-02-11 21:11:28 +00:00
background: '--bg',
2024-02-13 00:09:43 +00:00
roundness: 3,
blur: '5px',
2024-02-11 21:11:28 +00:00
shadow: [{
x: 1,
y: 1,
blur: 4,
spread: 0,
color: '#000000',
alpha: 0.6
}]
}
}
2024-01-18 12:35:25 +00:00
]
}