1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-15 12:59:09 +00:00

set base font size back to 14px

This commit is contained in:
Maroš Špak 2018-12-11 15:29:25 +01:00
parent 42945c78c5
commit b4e8bbd9f1

View File

@ -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};
}