web: components: page-layout: fixed initial scroll in article on tablet

This commit is contained in:
Andrey Savihin 2019-11-27 15:49:01 +03:00
parent 7c522206e3
commit 195f6a3738

View File

@ -31,8 +31,13 @@ const StyledArticle = styled.article`
z-index: 400;
`
: `
display: none;
width: 0px;
width: 240px;
min-width: 240px;
position: fixed;
height: 100%;
top: 0;
left: -240px;
z-index: 400;
`}
}
`;