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

23 lines
339 B
JavaScript
Raw Permalink Normal View History

2024-02-12 18:58:42 +01:00
export default {
name: 'Avatar',
selector: '.Avatar',
2024-02-13 01:09:43 +01:00
variants: {
compact: '.-compact'
},
2024-02-12 18:58:42 +01:00
defaultRules: [
{
directives: {
2024-02-13 01:09:43 +01:00
roundness: 3,
2024-02-12 18:58:42 +01:00
shadow: [{
x: 0,
y: 1,
blur: 8,
spread: 0,
color: '#000000',
alpha: 0.7
}]
}
}
]
}