From b4e8bbd9f17a309d49eb410f9caa3ec419f36e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maro=C5=A1=20=C5=A0pak?= Date: Tue, 11 Dec 2018 15:29:25 +0100 Subject: [PATCH] set base font size back to 14px --- src/support/styles/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/support/styles/index.js b/src/support/styles/index.js index 42ccc0de..5de2aabd 100644 --- a/src/support/styles/index.js +++ b/src/support/styles/index.js @@ -1,6 +1,5 @@ import { createGlobalStyle } from 'styled-components'; import colors from 'config/colors'; -import { FONT_SIZE } from 'config/variables'; import tooltipStyles from './Tooltip'; import animationStyles from './Animations'; @@ -12,7 +11,7 @@ const baseStyles = createGlobalStyle` position: relative; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif; font-weight: 400; - font-size: ${FONT_SIZE.SMALL}; + font-size: 14px; color: ${colors.TEXT}; }