pleroma-fe/src/components/user_avatar/avatar.style.js

23 lines
339 B
JavaScript

export default {
name: 'Avatar',
selector: '.Avatar',
variants: {
compact: '.-compact'
},
defaultRules: [
{
directives: {
roundness: 3,
shadow: [{
x: 0,
y: 1,
blur: 8,
spread: 0,
color: '#000000',
alpha: 0.7
}]
}
}
]
}