sizes.ts 412 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export const pageMarginLeftRight = '2vw'
export const pageMarginLeftRightMobile = '2vw'

export const distance = {
    verySmall: '0.3rem',
    small: '0.6rem',
    medium: '1rem',
    large: '1.4rem',
    veryLarge: '3rem'
}

export const maxScreenWidthMobile = 768

export const fontSizes = {
    veryLarge: '2.3rem',
    h1: '1.4rem',
    h2: '1.3rem',
    h3: '1.2rem',
    h4: '1.1rem',
    text: '1.0rem'
}