pleroma-fe/src/components/icon.style.js

16 lines
325 B
JavaScript
Raw Normal View History

2024-01-18 14:35:25 +02:00
export default {
name: 'Icon',
2024-01-31 17:39:51 +02:00
virtual: true,
selector: '.svg-inline--fa',
defaultRules: [
{
component: 'Icon',
directives: {
textColor: '--text',
2024-02-07 16:17:53 +02:00
// textAuto: 'no-auto', // doesn't work well with mixrgb?
2024-01-31 17:39:51 +02:00
textOpacity: 0.5,
2024-02-07 16:17:53 +02:00
textOpacityMode: 'mixrgb'
2024-01-31 17:39:51 +02:00
}
}
]
2024-01-18 14:35:25 +02:00
}