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

37 lines
576 B
JavaScript
Raw Normal View History

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