Last active
October 22, 2020 01:45
-
-
Save digitallysavvy/925a04d16536fcd1eac82a7431016eef to your computer and use it in GitHub Desktop.
a basic chat ui container
This file contains hidden or 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
<!-- Chat UI --> | |
<div class="chatContainer"> | |
<div class="chat"> | |
<div class="chat_header"></div> | |
<div id="chat_fullscreen" class="chat_conversion chat_converse"> | |
<!-- msgs will be dynamically added below --> | |
</div> | |
<div class="chatUi_field"> | |
<textarea id="chatTextInput" name="chat_message" placeholder="Send a message" class="chat_field chat_message"></textarea> | |
<a id="chatUi_send" class="chatUi"><i class="zmdi zmdi-mail-send"></i></a> | |
</div> | |
</div> | |
<a id="chatToggleBtn" class="chatUi"><i id="chatIcon" class="zmdi zmdi-comment-outline"></i></a> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment