Skip to content

Commit

Permalink
Blurry looking homepage font (#183)
Browse files Browse the repository at this point in the history
* fix TS error notification error (#180)

Co-authored-by: Ciaran Schutte <ciaranschutte@oicr.on.ca>

* Routing state fixes (#182)

* add server command for local build + serve

* use legacy behaviour for client side link routing

---------

Co-authored-by: Ciaran Schutte <ciaranschutte@oicr.on.ca>

* add font smoothing for homepage white text on black background

---------

Co-authored-by: Ciaran Schutte <ciaranschutte@oicr.on.ca>
  • Loading branch information
ciaranschutte and Ciaran Schutte authored May 1, 2024
1 parent fe3b7e9 commit 1c1e861
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ const Hero = () => {
margin: '18px 0px 35px',
textAlign: 'center',
fontWeight: 600,
WebkitFontSmoothing: 'antialiased',
MozOsxFontSmoothing: 'antialiased',
})}
as="h1"
>
Expand All @@ -98,12 +100,21 @@ const Hero = () => {
css={css({
marginBottom: '62px',
lineHeight: '24px',
fontWeight: 500,
WebkitFontSmoothing: 'antialiased',
MozOsxFontSmoothing: 'grayscale',
})}
>
The International Cancer Genome Consortium Accelerating Research in Genomic Oncology (ICGC
ARGO) aims to{' '}
<b>uniformly analyze specimens from 100,000 donors with high quality clinical data</b> in
order to address outstanding questions that are vital to the quest to defeat cancer.
<strong
css={css`
font-weight: 700;
`}
>
uniformly analyze specimens from 100,000 donors with high quality clinical data
</strong>{' '}
in order to address outstanding questions that are vital to the quest to defeat cancer.
</Typography>

<Link
Expand Down

0 comments on commit 1c1e861

Please sign in to comment.