hotfix: add missing box-sizing in global styles

This commit is contained in:
George Lima 2018-12-10 21:08:20 -03:00
parent d49c38449a
commit 8f5c9251a4
1 changed files with 7 additions and 1 deletions

View File

@ -40,7 +40,13 @@ const appTheme = {
},
};
export const GlobalStyle = createGlobalStyle`${[normalize()]}`;
export const GlobalStyle = createGlobalStyle`
${normalize()}
* {
box-sizing: border-box;
}
`;
/* eslint-disable react/prop-types */
// $FlowFixMe