Fix hiding bot commands with disabled animations

This commit is contained in:
Eduard Kuzmenko 2022-03-09 23:05:16 +02:00
parent 2f91366d2a
commit 164c81ea48
2 changed files with 5 additions and 2 deletions

View File

@ -226,7 +226,7 @@ export default class ChatInput {
private botCommandsToggle: HTMLElement;
private botCommands: ChatBotCommands;
private botCommandsIcon: HTMLDivElement;
hasBotCommands: number;
private hasBotCommands: number;
// private activeContainer: HTMLElement;

View File

@ -24,7 +24,10 @@
animation: none !important;
visibility: visible !important;
transition: none !important;
display: flex !important;
@include animation-level(2) {
display: flex !important;
}
.scrollable {
background-color: var(--surface-color);