Merge pull request #1620 from ONLYOFFICE/bugfix/fix-invite-panel

bugfix/fix-invite-panel
This commit is contained in:
Alexey Safronov 2023-08-11 18:15:32 +04:00 committed by GitHub
commit 432caec093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ const fillAvailableWidth = css`
const StyledInvitePanel = styled.div`
.invite-panel-body {
height: ${(props) =>
props.hasInvitedUsers ? "calc(100% - 55px - 70px)" : "calc(100% - 55px)"};
props.hasInvitedUsers ? "calc(100% - 55px - 73px)" : "calc(100% - 55px)"};
.scroll-body {
padding-right: 0px !important;

View File

@ -7,7 +7,7 @@ import Item from "./Item";
import { StyledRow, ScrollList } from "../StyledInvitePanel";
const FOOTER_HEIGHT = 70;
const FOOTER_HEIGHT = 73;
const USER_ITEM_HEIGHT = 48;
const Row = memo(({ data, index, style }) => {