From 318bc26fa09cb42ad829d924fee9207b4a54ad6e Mon Sep 17 00:00:00 2001 From: Vlad Piersec Date: Mon, 1 Nov 2021 14:10:30 +0200 Subject: [PATCH] fix(Polls): Fix polls pane on Firefox On Firefox the create button is not visible. Having a poll with long question/options breaks the UI. --- css/_polls.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/_polls.scss b/css/_polls.scss index cf812fcec..607bfc737 100644 --- a/css/_polls.scss +++ b/css/_polls.scss @@ -236,7 +236,7 @@ ol.poll-result-list { .polls-pane-content { - height: calc(100% - 102px); + height: 100%; position: relative; } @@ -308,6 +308,10 @@ ol.poll-result-list { padding: 10px 16px; } +#polls-panel { + height: calc(100% - 102px); +} + .poll-container { font-size: 14px; font-weight: 600;