Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added packages/site/fonts/CentraNo1-Bold.woff2
Binary file not shown.
Binary file added packages/site/fonts/CentraNo1-BoldItalic.woff2
Binary file not shown.
Binary file added packages/site/fonts/CentraNo1-Book.woff2
Binary file not shown.
Binary file added packages/site/fonts/CentraNo1-BookItalic.woff2
Binary file not shown.
Binary file added packages/site/fonts/CentraNo1-Medium.woff2
Binary file not shown.
Binary file added packages/site/fonts/CentraNo1-MediumItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B Bold.ttf
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B Italic.ttf
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B Light.ttf
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B Medium.ttf
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B Regular.ttf
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/Euclid Circular B SemiBold.ttf
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Bold.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Bold.woff2
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-BoldItalic.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-BoldItalic.woff2
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Italic.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Italic.woff2
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Light.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Light.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Medium.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Medium.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Regular.woff
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-Regular.woff2
Binary file not shown.
Binary file removed packages/site/fonts/EuclidCircularB-SemiBold.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 6 additions & 12 deletions packages/site/gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,9 @@ const config: GatsbyConfig = {
// ----------------------------------------------------------------
// Regular
{
family: 'Euclid Circular B',
family: 'CentraNo1',
urls: {
woff2: `fonts/EuclidCircularB-Regular.woff2`,
woff: `fonts/EuclidCircularB-Regular.woff`,
ttf: `fonts/Euclid Circular B Regular.ttf`,
woff2: `fonts/CentraNo1-Book.woff2`,
},
fontStyle: 'normal',
fontWeight: 400,
Expand All @@ -53,11 +51,9 @@ const config: GatsbyConfig = {
// ----------------------------------------------------------------
// Medium
{
family: 'Euclid Circular B',
family: 'CentraNo1',
urls: {
woff2: `fonts/EuclidCircularB-Medium.woff2`,
woff: `fonts/EuclidCircularB-Medium.woff`,
ttf: `fonts/Euclid Circular B Medium.ttf`,
woff2: `fonts/CentraNo1-Medium.woff2`,
},
fontStyle: 'normal',
fontWeight: 500,
Expand All @@ -66,11 +62,9 @@ const config: GatsbyConfig = {
// ----------------------------------------------------------------
// Bold
{
family: 'Euclid Circular B',
family: 'CentraNo1',
urls: {
woff2: `fonts/EuclidCircularB-Bold.woff2`,
woff: `fonts/EuclidCircularB-Bold.woff`,
ttf: `fonts/Euclid Circular B Bold.ttf`,
woff2: `fonts/CentraNo1-Bold.woff2`,
},
fontStyle: 'normal',
fontWeight: 700,
Expand Down
8 changes: 4 additions & 4 deletions packages/site/src/components/styledComponents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Divider = styled.div`
color: #24272a;

/* Heading-MD */
font-family: Euclid Circular B, ui-sans-serif;
font-family: CentraNo1, ui-sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 700;
Expand Down Expand Up @@ -88,7 +88,7 @@ export const AccountTitle = styled.p`
display: flex;
margin: 0px;
color: #000;
font-family: Euclid Circular B, ui-sans-serif;
font-family: CentraNo1, ui-sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
Expand Down Expand Up @@ -176,7 +176,7 @@ export const AccountRowTitle = styled.p`
color: #000;

/* H6 - Bold 14px */
font-family: Euclid Circular B, ui-sans-serif;
font-family: CentraNo1, ui-sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 700;
Expand All @@ -189,7 +189,7 @@ export const AccountRowValue = styled.p`
color: #6a737d;

/* H6 - Normal 14px */
font-family: Euclid Circular B, ui-sans-serif;
font-family: CentraNo1, ui-sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
Expand Down