Web: Common/Components: Fixed after merge

This commit is contained in:
TatianaLopaeva 2020-11-16 11:00:12 +03:00
parent 18d792c2c7
commit 108f575645
3 changed files with 3 additions and 2 deletions

View File

@ -50,7 +50,7 @@ const StyledArticle = styled.article`
left: 0;
min-width: 240px;
background: #f8f9f9;
z-index: 0;
z-index: -1;
}
`
: `

View File

@ -108,7 +108,7 @@ class SectionHeader extends React.Component {
>
<LayoutContextConsumer>
{ value =>
<div id="scroll" className={classnames("section-header", {
<div className={classnames("section-header", {
"section-header--hidden": !value.isVisible
})} {...rest}/>
}

View File

@ -30,6 +30,7 @@ class CustomScrollbars extends React.Component {
onScroll={onScroll}
stype={stype}
className={className}
id="scroll"
>
{children}
</Scrollbar>