hotfix: add missing overflow in Layout

This commit is contained in:
George Lima 2018-12-20 14:15:55 -03:00
parent b7df0fa86a
commit 7e76173a06
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ const Layout = styled.div`
background-color: ${props => props.theme.colors.background};
padding-left: ${props => props.theme.layoutPaddingLeft};
padding-right: ${props => props.theme.layoutPaddingRight};
overflow: auto;
`;
type Props = {