mirror of
https://github.com/trezor/trezor-wallet
synced 2025-02-08 22:22:44 +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 React from 'react';
|
||||||
import styled, { css } from 'styled-components';
|
import styled, { css } from 'styled-components';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { TRANSITION } from 'config/variables';
|
import { FONT_SIZE, TRANSITION } from 'config/variables';
|
||||||
import colors from 'config/colors';
|
import colors from 'config/colors';
|
||||||
|
|
||||||
const A = styled.a`
|
const A = styled.a`
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: ${TRANSITION.HOVER};
|
transition: ${TRANSITION.HOVER};
|
||||||
|
font-size: ${FONT_SIZE.SMALLER};
|
||||||
|
|
||||||
${props => props.isGreen && css`
|
${props => props.isGreen && css`
|
||||||
border-bottom: 1px solid ${colors.GREEN_PRIMARY};
|
border-bottom: 1px solid ${colors.GREEN_PRIMARY};
|
||||||
|
Loading…
Reference in New Issue
Block a user