Only show chat send button on mobile

This commit is contained in:
Gabe Kangas
2022-10-04 19:04:23 -07:00
parent 6c9f9f6507
commit 45c7fa4f7e
2 changed files with 14 additions and 1 deletions

View File

@@ -46,3 +46,16 @@
cursor: pointer;
padding: 0 1rem;
}
.sendButton {
border: none;
background: none;
cursor: pointer;
padding: 0 1rem;
display: none;
// Only show the chat send button on narrow screens to assist in mobile use.
@media (max-width: 768px) {
display: block;
}
}

View File

@@ -235,7 +235,7 @@ export const ChatTextField: FC<ChatTextFieldProps> = () => {
</button>
<button
type="button"
className={styles.emojiButton}
className={styles.sendButton}
title="Send message Button"
onClick={sendMessage}
>