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.
This commit is contained in:
Vlad Piersec 2021-11-01 14:10:30 +02:00 committed by vp8x8
parent 072c29c0f9
commit 318bc26fa0
1 changed files with 5 additions and 1 deletions

View File

@ -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;