logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

attachment.style.js (401B)


  1. export default {
  2. name: 'Attachment',
  3. selector: '.Attachment',
  4. validInnerComponents: [
  5. 'Border',
  6. 'ButtonUnstyled',
  7. 'Input'
  8. ],
  9. defaultRules: [
  10. {
  11. directives: {
  12. roundness: 3
  13. }
  14. },
  15. {
  16. component: 'ButtonUnstyled',
  17. parent: { component: 'Attachment' },
  18. directives: {
  19. background: '#FFFFFF',
  20. opacity: 0.5
  21. }
  22. }
  23. ]
  24. }