From 3021dd779534772518a87b5ea9e4e0777471f7e4 Mon Sep 17 00:00:00 2001 From: Matthew Heller Date: Thu, 3 Nov 2022 12:36:03 -0500 Subject: [PATCH] Always show the 'send chat message' button. Re #2293. (#2298) --- web/components/chat/ChatTextField/ChatTextField.module.scss | 6 ------ 1 file changed, 6 deletions(-) diff --git a/web/components/chat/ChatTextField/ChatTextField.module.scss b/web/components/chat/ChatTextField/ChatTextField.module.scss index 623b884c4..5752ec078 100644 --- a/web/components/chat/ChatTextField/ChatTextField.module.scss +++ b/web/components/chat/ChatTextField/ChatTextField.module.scss @@ -56,14 +56,8 @@ } .sendButton { - display: none; border: none; background: none; cursor: pointer; padding: 0 1rem; - - // Only show the chat send button on narrow screens to assist in mobile use. - @include screen(desktop) { - display: block; - } }