Skip to content

Commit

Permalink
fix(lading): add font face
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusps committed Nov 24, 2023
1 parent 69eb911 commit 61f0d06
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/next-docs/pages/index.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

.heroContainer {
container: hero / inline-size;
width: 100%;
Expand All @@ -13,7 +15,8 @@

.hero h2 {
font-size: clamp(2.75rem, 7cqi, 3.75rem);
font-family: Inter;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-style: normal;
font-weight: 600;
line-height: 4.25rem;
Expand All @@ -28,7 +31,8 @@
}

.subtitle {
font-family: Inter;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1rem;
font-style: normal;
font-weight: 400;
Expand All @@ -38,7 +42,8 @@
}

.title {
font-family: Inter;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.75rem;
font-style: normal;
font-weight: 600;
Expand Down

0 comments on commit 61f0d06

Please sign in to comment.