From 9ebc9541b9ddf09747a84ea496c3bb1f9ac55c66 Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Fri, 4 Jun 2021 18:27:25 -0400 Subject: [PATCH] FIX: Size of emoji in poll options (#13294) Fixes a regression in 33cb1b --- plugins/poll/assets/stylesheets/common/poll.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/poll/assets/stylesheets/common/poll.scss b/plugins/poll/assets/stylesheets/common/poll.scss index 4669cd293a6..04972e7e1eb 100644 --- a/plugins/poll/assets/stylesheets/common/poll.scss +++ b/plugins/poll/assets/stylesheets/common/poll.scss @@ -31,8 +31,8 @@ div.poll { height: auto; // Hacky way to stop images without width/height // from causing abrupt unintended scrolling - &:not([width]), - &:not([height]) { + &:not([width]):not(.emoji), + &:not([height]):not(.emoji) { width: 200px !important; height: 200px !important; object-fit: contain;