From 462205650d34f983e4eeca6c165be968caac40ed Mon Sep 17 00:00:00 2001 From: slowbackspace Date: Thu, 13 Dec 2018 13:44:54 +0100 Subject: [PATCH] fix px font-size in modal pin button --- src/components/modals/pin/Pin/components/Button/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/modals/pin/Pin/components/Button/index.js b/src/components/modals/pin/Pin/components/Button/index.js index d46be2a4..5b592dc6 100644 --- a/src/components/modals/pin/Pin/components/Button/index.js +++ b/src/components/modals/pin/Pin/components/Button/index.js @@ -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};