1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-28 03:08:30 +00:00

fix px font-size in modal pin button

This commit is contained in:
slowbackspace 2018-12-13 13:44:54 +01:00
parent 3c6df77b04
commit 462205650d

View File

@ -4,7 +4,7 @@ import * as React from 'react';
import styled from 'styled-components';
import PropTypes from 'prop-types';
import colors from 'config/colors';
import { FONT_WEIGHT } from 'config/variables';
import { FONT_SIZE, FONT_WEIGHT } from 'config/variables';
type Props = {
onClick: () => void;
@ -16,7 +16,7 @@ const Wrapper = styled.button`
height: 80px;
margin-top: 15px;
margin-left: 10px;
font-size: 22px;
font-size: ${FONT_SIZE.BIGGER};
font-weight: ${FONT_WEIGHT.SEMIBOLD};
color: ${colors.TEXT_PRIMARY};
border: 1px solid ${colors.DIVIDER};