panels/statuses are looking really good now even with transparency

This commit is contained in:
Henry Jameson 2024-03-04 18:24:29 +02:00
commit a190389f3c
12 changed files with 97 additions and 67 deletions

View file

@ -202,6 +202,9 @@ export const convertTheme2To3 = (data) => {
newRules.push({ ...rule, component: 'Tab' })
newRules.push({ ...rule, component: 'Tab', state: ['active'], directives: { opacity: 0 } })
}
if (rule.component === 'Panel') {
newRules.push({ ...rule, component: 'Post' })
}
})
return newRules
}