Skip to content

Commit

Permalink
Web: Components: Fixed top style.
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaLopaeva committed Oct 26, 2021
1 parent be8c02a commit 16f9dc4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/asc-web-components/group-button/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ class GroupButton extends React.Component {
? { manualX: window.innerWidth <= 1024 ? "44px" : "50px" }
: {};

const manualY = window.innerWidth <= 1024 ? "60px" : "53px";

return (
<StyledGroupButton
ref={this.ref}
Expand Down Expand Up @@ -140,6 +142,7 @@ class GroupButton extends React.Component {
<DropDown
{...dropDownMaxHeightProp}
{...offsetSelectDropDown}
manualY={manualY}
open={this.state.isOpen}
clickOutsideAction={this.clickOutsideAction}
showDisabledItems={true}
Expand Down

0 comments on commit 16f9dc4

Please sign in to comment.