notification fixes

This commit is contained in:
Henry Jameson 2025-08-10 23:06:33 +03:00
commit 2aabaeb5c6
3 changed files with 1 additions and 24 deletions

View file

@ -6,10 +6,6 @@ export default {
'Link', 'Link',
'Icon', 'Icon',
'Border', 'Border',
// Optimization: don't put heavy components unless needed
// 'Button',
// 'ButtonUnstyled',
// 'Input',
'Avatar', 'Avatar',
'PollGraph' 'PollGraph'
], ],

View file

@ -2,6 +2,7 @@
font-family: var(--font); font-family: var(--font);
&.-faint { &.-faint {
color: var(--text);
/* stylelint-disable declaration-no-important */ /* stylelint-disable declaration-no-important */
--text: var(--textFaint) !important; --text: var(--textFaint) !important;
--link: var(--linkFaint) !important; --link: var(--linkFaint) !important;

View file

@ -10,28 +10,8 @@ export default {
defaultRules: [ defaultRules: [
{ {
directives: { directives: {
background: '--bg',
opacity: 0,
roundness: 3,
shadow: [{
x: 1,
y: 1,
blur: 4,
spread: 0,
color: '#000000',
alpha: 0.6
}],
'--profileTint': 'color | $alpha(--background 1)' '--profileTint': 'color | $alpha(--background 1)'
} }
},
{
parent: {
component: 'UserCard'
},
component: 'RichContent',
directives: {
opacity: 0
}
} }
] ]
} }