aboutsummaryrefslogtreecommitdiff
path: root/src/components/underlay.style.js
blob: f879c530a3a37ab0ea79da7acf4d8bb23afa59f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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',
      directives: {
        background: '#000000',
        opacity: 0.2
      }
    }
  ]
}