From c7200b2234f37827b642f29839eee08302ed9c97 Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Fri, 11 Nov 2022 16:47:25 +0000 Subject: [PATCH] make emoji reactions in notifications bar wider --- src/components/emoji_picker/emoji_picker.scss | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/components/emoji_picker/emoji_picker.scss b/src/components/emoji_picker/emoji_picker.scss index b5cc1c63..ac7b8b5d 100644 --- a/src/components/emoji_picker/emoji_picker.scss +++ b/src/components/emoji_picker/emoji_picker.scss @@ -1,5 +1,25 @@ @import '../../_variables.scss'; +.Notification { + .emoji-picker { + min-width: 160%; + width: 150%; + overflow: hidden; + left: -70%; + max-width: 100%; + @media (min-width: 800px) and (max-width: 1300px) { + left: -50%; + min-width: 50%; + max-width: 130%; + } + + @media (max-width: 800px) { + left: -10%; + min-width: 50%; + max-width: 130%; + } + } +} .emoji-picker { display: flex; flex-direction: column;