logo

pleroma-fe

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

badge.style.js (474B)


  1. export default {
  2. name: 'Badge',
  3. selector: '.badge',
  4. validInnerComponents: [
  5. 'Text',
  6. 'Icon'
  7. ],
  8. variants: {
  9. notification: '.-notification'
  10. },
  11. defaultRules: [
  12. {
  13. component: 'Root',
  14. directives: {
  15. '--badgeNotification': 'color | --cRed'
  16. }
  17. },
  18. {
  19. directives: {
  20. background: '--cGreen'
  21. }
  22. },
  23. {
  24. variant: 'notification',
  25. directives: {
  26. background: '--cRed'
  27. }
  28. }
  29. ]
  30. }