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

22 lines
339 B
JavaScript
Raw Normal View History

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