diff --git a/backend/server.js b/backend/server.js index fad5125..df376bf 100644 --- a/backend/server.js +++ b/backend/server.js @@ -9,7 +9,7 @@ * @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon: * @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.1.31 + * @version 1.1.32 */ require('dotenv').config(); diff --git a/frontend/css/chat.css b/frontend/css/chat.css index 9967a75..cce57b0 100644 --- a/frontend/css/chat.css +++ b/frontend/css/chat.css @@ -89,8 +89,13 @@ .chat .footer textarea:focus { border: 1px solid #439fff; } -.chat .footer button { - position: absolute; + +.chat .footer .buttons { + display: inline; +} + +.chat .footer .buttons button { + position: relative; bottom: 13px; right: 5px; border: none; @@ -98,7 +103,7 @@ background: transparent; color: #439fff; } -.chat .footer button:hover { +.chat .footer .buttons button:hover { color: var(--text-color); } @@ -119,3 +124,14 @@ .chat .footer textarea::-webkit-scrollbar-thumb { background: var(--primary-color); } + +.chatEmojiPicker { + position: absolute; + bottom: 0px; + background: var(--chat-bg); + border: var(--border); + border-radius: 5px; + --rgb-background: var(--chat-bg); + --color-border-over: var(--chat-bg); + --font-family: 'Montserrat'; +} \ No newline at end of file diff --git a/frontend/html/client.html b/frontend/html/client.html index 28c0529..7219aee 100644 --- a/frontend/html/client.html +++ b/frontend/html/client.html @@ -39,6 +39,7 @@ + @@ -154,8 +155,12 @@