logo

pleroma-fe

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

avatar.style.js (339B)


  1. export default {
  2. name: 'Avatar',
  3. selector: '.Avatar',
  4. variants: {
  5. compact: '.-compact'
  6. },
  7. defaultRules: [
  8. {
  9. directives: {
  10. roundness: 3,
  11. shadow: [{
  12. x: 0,
  13. y: 1,
  14. blur: 8,
  15. spread: 0,
  16. color: '#000000',
  17. alpha: 0.7
  18. }]
  19. }
  20. }
  21. ]
  22. }