Skip to content

Commit

Permalink
Merge pull request #126 from Altalogy/launchpad/fix/typography-weights
Browse files Browse the repository at this point in the history
fix: typography letter-spacing
  • Loading branch information
corquaid authored May 4, 2022
2 parents fda2046 + 447ce8b commit ff4c33b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions applications/launchpad/gui-react/src/styles/styles/typography.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,64 +13,76 @@ const typography = {
fontSize: 32,
lineHeight: '44px',
fontFamily: 'AvenirHeavy',
fontWeight: 500,
},
subheader: {
fontSize: 24,
lineHeight: '38px',
fontFamily: 'AvenirHeavy',
fontWeight: 500,
},
defaultHeavy: {
fontSize: 16,
lineHeight: '25.6px',
fontFamily: 'AvenirHeavy',
fontWeight: 500,
},
defaultMedium: {
fontSize: 16,
lineHeight: '25.6px',
fontFamily: 'AvenirMedium',
fontWeight: 500,
},
defaultUnder: {
fontSize: 16,
lineHeight: '25.6px',
fontFamily: 'AvenirMedium',
textDecoration: 'underline',
fontWeight: 500,
},
smallHeavy: {
fontSize: 14,
lineHeight: '22.4px',
fontFamily: 'AvenirHeavy',
fontWeight: 500,
},
smallMedium: {
fontSize: 14,
lineHeight: '22.4px',
fontFamily: 'AvenirMedium',
fontWeight: 500,
},
smallUnder: {
fontSize: 14,
lineHeight: '22.4px',
fontFamily: 'AvenirMedium',
textDecoration: 'underline',
fontWeight: 500,
},
microHeavy: {
fontSize: 12,
lineHeight: '18px',
fontFamily: 'AvenirHeavy',
fontWeight: 500,
},
microMedium: {
fontSize: 12,
lineHeight: '18px',
fontFamily: 'AvenirMedium',
fontWeight: 500,
},
microRegular: {
fontSize: 12,
lineHeight: '18px',
fontFamily: 'AvenirRegular',
fontWeight: 500,
},
microOblique: {
fontSize: 12,
lineHeight: '18px',
fontFamily: 'AvenirRegular',
fontStyle: 'italic',
fontWeight: 500,
},
}

Expand Down

0 comments on commit ff4c33b

Please sign in to comment.