Skip to content

Commit

Permalink
chore: clean up typeface usage, alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
thekidnamedkd committed Oct 27, 2024
1 parent 4ce3c04 commit b23fc0e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
href="https://fonts.googleapis.com/css2?family=Sora:wght@400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap"
rel="stylesheet"
/>

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

Expand Down
2 changes: 1 addition & 1 deletion public/ipfs-404.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<link href="./styles.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Sora:wght@700&display=swap"
href="https://fonts.googleapis.com/css2?family=Syne:wght@700&display=swap"
rel="stylesheet"
/>

Expand Down
5 changes: 2 additions & 3 deletions src/containers/hero/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ const Container = styled.div.attrs({
})``;

const Wrapper = styled.div.attrs({
className:
'flex justify-center xl:justify-between relative w-full col-start-2 col-end-12',
className: 'flex relative w-full col-start-1 xl:col-start-2 col-end-12',
})``;

const ContentWrapper = styled.div.attrs({
Expand All @@ -49,7 +48,7 @@ const Title = styled.h1.attrs({

const Subtitle = styled.h3.attrs({
className:
'text-neutral-0 ft-text-lg font-normal text-center xl:text-left leading-[24px] xl:leading-[30px]',
'text-neutral-0 ft-text-lg font-normal leading-[24px] xl:leading-[30px]',
})``;

const ImageWrapper = styled.div.attrs({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/notFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const Wrapper = styled.div.attrs({
const Title = styled.h1.attrs({
className: 'font-semibold text-primary-500 text-center xl:text-left',
})`
font-family: Sora;
font-family: Syne;
line-height: 120%;
font-size: 34px;
Expand Down

0 comments on commit b23fc0e

Please sign in to comment.