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

47 lines
771 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',
2024-02-11 23:11:28 +02:00
'PanelHeader',
'Post',
2025-08-10 23:16:29 +03:00
'Notification',
'MenuItem'
],
2024-07-17 17:19:57 +03:00
validInnerComponentsLite: [
'Text',
'Link',
'Icon',
'Border',
2025-08-10 22:49:09 +03:00
'PanelHeader'
2024-07-17 17:19:57 +03:00
],
defaultRules: [
{
directives: {
backgroundNoCssColor: 'yes',
2024-02-11 23:11:28 +02:00
background: '--bg',
2024-02-13 02:09:43 +02:00
roundness: 3,
blur: '5px',
2024-02-11 23:11:28 +02:00
shadow: [{
x: 0,
y: 0,
blur: 3,
2024-02-11 23:11:28 +02:00
spread: 0,
color: '#000000',
alpha: 0.5
},
{
x: 0,
y: 4,
blur: 6,
spread: 3,
color: '#000000',
alpha: 0.3
2024-02-11 23:11:28 +02:00
}]
}
}
2024-01-18 14:35:25 +02:00
]
}