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:
parent
69562c6d7a
commit
db80eed9ba
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user