Skip to content

Commit

Permalink
fix for ie11 flex min width bug
Browse files Browse the repository at this point in the history
  • Loading branch information
neptunian committed Dec 9, 2019
1 parent 76a525c commit aa02731
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ const SIDEBAR_WIDTH = '168px';

const PageContainer = styled.div`
margin: 0 auto;
min-width: 1200px;
width: 1200px;
`;
const PageBody = styled.div`
max-width: 772px;
min-width: 772px;
`;
const NavButtonBackWrapper = styled.div`
padding: ${props => props.theme.eui.paddingSizes.xl} 0 ${props => props.theme.eui.paddingSizes.m}
Expand Down

0 comments on commit aa02731

Please sign in to comment.