fix(polling): invisible quick poll dropdown

This commit is contained in:
João Victor 2024-02-05 13:43:25 -03:00
parent 98e280c275
commit dac9b5b1f6
2 changed files with 2 additions and 0 deletions

View File

@ -840,6 +840,7 @@ class Presentation extends PureComponent {
height: svgDimensions.height < 0 ? 0 : svgDimensions.height,
textAlign: 'center',
display: !presentationIsOpen ? 'none' : 'block',
zIndex: 1,
}}
id="presentationInnerWrapper"
>

View File

@ -161,6 +161,7 @@ const PresentationToolbar = styled.div`
order: 2;
position: absolute;
bottom: 0;
z-index: 2;
`;
const ToastSeparator = styled(ToastStyled.Separator)``;