aboutsummaryrefslogtreecommitdiff
path: root/src/components/underlay.style.js
blob: 48965f20b2ad8a290c7e4e9f796467934eba3395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export default {
  name: 'Underlay',
  selector: 'body', // Should be '#content' but for now this is better for testing until I have proper popovers and such...
  outOfTreeSelector: '.underlay',
  validInnerComponents: [
    'Panel'
  ],
  defaultRules: [
    {
      component: 'Underlay',
      // variant: 'normal',
      // state: 'normal'
      directives: {
        background: '#000000',
        opacity: 0.2
      }
    }
  ]
}