logo

pleroma-fe

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

top_bar.style.js (425B)


  1. export default {
  2. name: 'TopBar',
  3. selector: 'nav',
  4. validInnerComponents: [
  5. 'Link',
  6. 'Text',
  7. 'Icon',
  8. 'Button',
  9. 'ButtonUnstyled',
  10. 'Input',
  11. 'Badge'
  12. ],
  13. defaultRules: [
  14. {
  15. directives: {
  16. background: '--fg',
  17. shadow: [{
  18. x: 0,
  19. y: 0,
  20. blur: 4,
  21. spread: 0,
  22. color: '#000000',
  23. alpha: 0.6
  24. }]
  25. }
  26. }
  27. ]
  28. }