1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-22 22:10:58 +00:00

Remove unused import and add default font size

This commit is contained in:
Vasek Mlejnsky 2018-08-27 10:45:24 +02:00
parent 69562c6d7a
commit db80eed9ba

View File

@ -1,13 +1,14 @@
import React from 'react';
import styled, { css } from 'styled-components';
import PropTypes from 'prop-types';
import { TRANSITION } from 'config/variables';
import { FONT_SIZE, TRANSITION } from 'config/variables';
import colors from 'config/colors';
const A = styled.a`
text-decoration: none;
cursor: pointer;
transition: ${TRANSITION.HOVER};
font-size: ${FONT_SIZE.SMALLER};
${props => props.isGreen && css`
border-bottom: 1px solid ${colors.GREEN_PRIMARY};