From 8f5c9251a4a2ade6b4976e8dbb948b080192dca3 Mon Sep 17 00:00:00 2001 From: George Lima Date: Mon, 10 Dec 2018 21:08:20 -0300 Subject: [PATCH] hotfix: add missing box-sizing in global styles --- app/theme.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/theme.js b/app/theme.js index f3a575e..88391d0 100644 --- a/app/theme.js +++ b/app/theme.js @@ -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