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

Don't export TRANSITION_TIME

This commit is contained in:
Vasek Mlejnsky 2018-08-23 15:47:46 +02:00
parent 8fc6b040e9
commit ec1f47de71

View File

@ -12,10 +12,6 @@ export const FONT_WEIGHT = {
BIGGER: '600',
};
export const TRANSITION_TIME = {
BASE: '0.3s',
};
export const ICON_SIZE = {
BASE: '20px',
};
@ -28,10 +24,14 @@ export const LEFT_NAVIGATION_ROW = {
PADDING: '16px 24px',
};
const TRANSITION_TIME = {
BASE: '0.3s',
};
export const TRANSITION = {
HOVER: `transition: background-color ${TRANSITION_TIME.BASE} ease-in-out, color ${TRANSITION_TIME.BASE} ease-in-out, border-color ${TRANSITION_TIME.BASE} ease-in-out`,
};
export const LINE_HEIGHT = {
BASE: '1.8',
};
};