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

42 lines
661 B
JavaScript
Raw Normal View History

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