18 lines
240 B
JavaScript
18 lines
240 B
JavaScript
|
export default {
|
||
|
name: 'Root',
|
||
|
selector: ':root',
|
||
|
validInnerComponents: [
|
||
|
'Underlay',
|
||
|
'TopBar',
|
||
|
'Popover'
|
||
|
],
|
||
|
defaultRules: [
|
||
|
{
|
||
|
directives: {
|
||
|
background: '--bg',
|
||
|
opacity: 0
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|