1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-13 20:08:56 +00:00

Add font-weight, transition animation and line-height to variables

This commit is contained in:
Vasek Mlejnsky 2018-08-23 15:35:01 +02:00
parent ef266a471d
commit a9681916cc

View File

@ -2,6 +2,14 @@ export const FONT_SIZE = {
SMALLER: '12px',
SMALL: '14px',
BASE: '16px',
BIGGEST: '36px',
};
export const FONT_WEIGHT = {
SMALLEST: '300',
SMALL: '400',
BASE: '500',
BIGGER: '600',
};
export const TRANSITION_TIME = {
@ -19,3 +27,11 @@ export const BORDER_WIDTH = {
export const LEFT_NAVIGATION_ROW = {
PADDING: '16px 24px',
};
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',
};