Skip to content

Commit

Permalink
Remove breaking font
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmorrow committed May 2, 2024
1 parent 9d3068b commit baf0d0f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions public/privacy.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

html {
font-family: "Camphor", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
font-family: "Camphor", -apple-system, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";

Expand Down Expand Up @@ -111,7 +111,7 @@ <h2>Use of Your Personal Information</h2>
<h2>Log-In Features</h2>

<p>
We may allow you to sign up and log in using your Google account. If you sign up using your Google email account, Google will ask your permission to share certain information from your Google account with us. This may include your first name, last name, profile picture, general location, your timezone and birthday. Generally, we collect this information to support your account and to help us understand how you use the Service so we can make it better.
We may allow you to sign up and log in using your Google account. If you sign up using your Google email account, Google will ask your permission to share certain information from your Google account with us. This may include your first name, last name, profile picture, general location, your timezone and birthday. Generally, we collect this information to support your account and to help us understand how you use the Service so we can make it better.
</p>

<p>The specific uses are:</p>
Expand Down Expand Up @@ -142,7 +142,7 @@ <h2>Security</h2>
<h2>Your Rights</h2>

<p>
You have the following rights with respect to data protection:
You have the following rights with respect to data protection:
</p>
<ul>
<li>
Expand Down
2 changes: 1 addition & 1 deletion public/tos.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}

html {
font-family: "Camphor", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
font-family: "Camphor", -apple-system, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";

Expand Down
6 changes: 5 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
module.exports = {
content: ["./pages/**/*.tsx"],
theme: {
extend: {}
extend: {},
fontFamily: {
// Removing `BlinkMacSystemFont, ui-sans-serif, system-ui` for https://linear.app/replay/issue/TT-1070/remove-breaking-font-from-firstreplayio
sans: "-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"
}
},
plugins: []
};

0 comments on commit baf0d0f

Please sign in to comment.