-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support suggestions of messages for empty chat in widget (#2133)
* Support suggestions of messages for empty chat in widget * publish
- Loading branch information
1 parent
a8d25c7
commit f7d1940
Showing
7 changed files
with
163 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
.msg-suggestion { | ||
animation-name: fadeIn; | ||
animation-duration: 300ms; | ||
animation-timing-function: linear; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
@keyframes fadeIn { | ||
0% { | ||
opacity: 0%; | ||
} | ||
|
||
25% { | ||
opacity: 25%; | ||
} | ||
|
||
50% { | ||
opacity: 50%; | ||
} | ||
|
||
75% { | ||
opacity: 75%; | ||
} | ||
|
||
100% { | ||
opacity: 100%; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.