Merge pull request #19581 from JoVictorNunes/issue-19445

fix(polling): invisible quick poll dropdown
This commit is contained in:
Ramón Souza 2024-02-05 15:22:41 -03:00 committed by GitHub
commit c9cf67ef85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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)``;