fixing docs width/scrolling issues

This commit is contained in:
Evan Rusackas 2020-09-14 23:00:28 -07:00
parent e727a4a965
commit 53c6482083
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,7 @@ import SEO from '../components/seo';
import Layout from '../components/layout';
import AnchorNavigator from '../components/AnchorNavigator';
import NextLinks from '../components/next';
import { mq } from '../utils';
import 'antd/dist/antd.css';
@ -34,6 +35,9 @@ interface Props {
const docLayout = css`
display: flex;
flex-direction: row;
${[mq[3]]} {
flex-direction: column;
}
`;
const Theme = ({ children }: Props) => {