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

52 lines
818 B
JavaScript
Raw Normal View History

export default {
name: 'Alert',
selector: '.alert',
validInnerComponents: [
'Text',
'Icon',
'Link',
2024-02-21 22:02:24 +00:00
'Border',
'ButtonUnstyled'
],
variants: {
normal: '.neutral',
error: '.error',
warning: '.warning',
success: '.success'
},
defaultRules: [
{
directives: {
background: '--text',
2024-02-27 20:02:25 +00:00
opacity: 0.5,
blur: '9px'
}
},
2024-02-15 22:29:16 +00:00
{
parent: {
component: 'Alert'
},
component: 'Border',
textColor: '--parent'
},
{
variant: 'error',
directives: {
background: '--cRed'
}
},
{
variant: 'warning',
directives: {
background: '--cOrange'
}
},
{
variant: 'success',
directives: {
background: '--cGreen'
}
}
]
}