web: Common: Added hiding ArticleHeader on tablet

This commit is contained in:
Alexey Safronov 2020-02-13 12:39:32 +03:00
parent 741dc0edcc
commit e1f0e02f94

View File

@ -1,10 +1,15 @@
import React from "react";
import styled from "styled-components";
import { utils } from "asc-web-components";
const { tablet } = utils.device;
const StyledArticleHeader = styled.div`
border-bottom: 1px solid #eceef1;
height: 56px;
/*display: none;*/
@media ${tablet} {
display: none;
}
`;
const ArticleHeader = React.memo(props => {