From b3cae9a962ec01fbd5bbe73b95f37ea58952f4a5 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Fri, 12 Apr 2019 10:25:13 -0700 Subject: [PATCH] fix(chat): allow smiley opener to expand in width The chat icons are different on windows and mac, with windows icons being bigger. By settings a specific width on the smiley container, windows would see part of the smiley cut off. --- css/_chat.scss | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/css/_chat.scss b/css/_chat.scss index bdf4ca761..8225c9cc5 100644 --- a/css/_chat.scss +++ b/css/_chat.scss @@ -219,8 +219,6 @@ #smileys { font-size: 20pt; - display: inline-block; - height: 26px; margin: auto; cursor: pointer; } @@ -232,18 +230,14 @@ #smileysarea { background-color: $newToolbarBackgroundColor; - border: 0px none; display: flex; - height: 70px; max-height: 150px; min-height: 35px; - min-width: 31px; - padding: 0px; overflow: hidden; - width: 17%; } .smiley-input { + display: flex; position: relative; }