Skip to content

Commit

Permalink
Fix: Chat Widget should always be on top of the other elements on a p…
Browse files Browse the repository at this point in the history
…age (#78)
  • Loading branch information
sava-vidakovic authored Aug 22, 2024
1 parent b586891 commit 08904f8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/ui/src/rasa-chatbot-widget/rasa-chatbot-widget.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99999999;
--chat-message-max-width: 289px;
--image-height: 170px;
--video-height: 170px;
Expand Down Expand Up @@ -49,9 +50,7 @@
opacity: 0;
transform: scale(0);
transform-origin: bottom right;
transition:
transform 300ms cubic-bezier(0, 1.2, 1, 1) 0s,
opacity 83ms ease-out 0s;
transition: transform 300ms cubic-bezier(0, 1.2, 1, 1) 0s, opacity 83ms ease-out 0s;
&--open {
opacity: 1;
transform: scale(1);
Expand Down

0 comments on commit 08904f8

Please sign in to comment.