fix more transparent panels

This commit is contained in:
Henry Jameson 2024-03-06 20:35:03 +02:00
commit ce5552ae3c
4 changed files with 15 additions and 6 deletions

View file

@ -37,7 +37,6 @@
.footer {
position: sticky;
bottom: 0;
background-color: var(--background);
z-index: 1;
}

View file

@ -1,7 +1,6 @@
export default {
name: 'Chat',
selector: '.chat-message-list',
lazy: true,
validInnerComponents: [
'Text',
'Link',
@ -10,5 +9,11 @@ export default {
'ChatMessage'
],
defaultRules: [
{
directives: {
background: '--bg',
blur: '5px'
}
}
]
}