aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.style.js
blob: 5fb4701c3330d0be12c9299d6e0e3d98c28c67d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export default {
  name: 'Attachment',
  selector: '.Attachment',
  validInnerComponents: [
    'Border',
    'ButtonUnstyled',
    'Input'
  ],
  defaultRules: [
    {
      directives: {
        roundness: 3
      }
    },
    {
      component: 'ButtonUnstyled',
      parent: { component: 'Attachment' },
      directives: {
        background: '#FFFFFF',
        opacity: 0.5
      }
    }
  ]
}