Merge pull request #1677 from ONLYOFFICE/bugfix/info-panel-toggle-button

Web:Common:Navigation: hide toggle button, when info panel is opened
This commit is contained in:
Alexey Safronov 2023-09-01 23:10:17 +04:00 committed by GitHub
commit 001d2d313f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,12 @@ const StyledInfoPanelToggleColorThemeWrapper = styled(ColorTheme)`
margin-bottom: 1px;
padding: 0;
${(props) =>
props.isInfoPanelVisible &&
css`
display: none;
`}
@media ${tablet} {
display: none;
${(props) =>