diff --git a/src/features/Legal/index.tsx b/src/features/Legal/index.tsx index f83b3dba5..0f5e1d6cc 100644 --- a/src/features/Legal/index.tsx +++ b/src/features/Legal/index.tsx @@ -4,7 +4,7 @@ import { css } from "linaria"; import React, { ReactNode } from "react"; import { green20, trophyGold } from "shared/styles/color-palette"; import { bodyDarkGrey80, titleDarkHunterGreen } from "shared/styles/colors"; -import { segmentFontFamily } from "shared/styles/font-families"; +import { segmentBoldFontFamily, segmentFontFamily } from "shared/styles/font-families"; export default function Legal({ children, @@ -49,6 +49,9 @@ export default function Legal({ margin: 4rem 0 2rem; font-size: 36px; } + li { + margin-top: 0.5rem; + } li::marker { content: "· "; @@ -73,6 +76,9 @@ export default function Legal({ td > ul { padding-left: 1rem; } + strong { + font-family: ${segmentBoldFontFamily}; + } `} > {children} diff --git a/src/pages/privacy.mdx b/src/pages/privacy.mdx index 4bebf79de..47fa24b01 100644 --- a/src/pages/privacy.mdx +++ b/src/pages/privacy.mdx @@ -8,17 +8,14 @@ Effective date: February 21, 2022 | Last modified: February 9, 2023 At Taho (collectively referred to as “Taho”, “we”, “us” or “our”), we respect your privacy and are committed to protecting it. This privacy policy reflects our commitment to transparency and covers all personal information collected in the use of this website and the Taho web browser extension. Our goal is to make sure you have all the data you need to make an informed decision about how to use our wallet. -

Summary

-Taho offers a self-custodial wallet, which enables users to retain full control of their private keys and digital assets. Taho never has custody of, or access to, your private keys or the assets or permissions those keys control. +

Summary

-Taho operations are based in the United States and follow American laws and regulations. If you live outside the United States, note that these laws and regulations could differ from those where you live. +* Taho offers a self-custodial wallet, which enables users to retain full control of their private keys and digital assets. Taho never has custody of, or access to, your private keys or the assets or permissions those keys control. +* Taho operations are based in the United States and follow American laws and regulations. If you live outside the United States, note that these laws and regulations could differ from those where you live. +* Taho does **NOT** collect or store identification data such as first name, last name, home address, passport or driver's license, or date of birth. +* Taho does **NOT** collect or store blockchain activity or account information, such as addresses, transactions, or balances. +* Taho collects limited usage data on our website and through our browser extension to help us improve our product and deliver on our mission. We aim to protect users by keeping the scope of this usage data to a minimum, disclosing it in detail in this policy, as well as by providing clear opt-out prompts and using open source and/or locally-hosted analytics tools. -Taho does NOT collect or store identification data such as first name, last name, home address, passport or driver's license, or date of birth. - -Taho does NOT collect or store blockchain activity or account information, such as addresses, transactions, or balances. - -Taho collects limited usage data on our website and through our browser extension to help us improve our product and deliver on our mission. We aim to protect users by keeping the scope of this usage data to a minimum, disclosing it in detail in this policy, as well as by providing clear opt-out prompts and using open source and/or locally-hosted analytics tools. -

1. Table of Contents

**We cover a lot of ground in this privacy policy. Use the links below to navigate to later sections of the privacy policy of interest to you.** diff --git a/src/shared/fonts/segment-bold/segment-bold.eot b/src/shared/fonts/segment-bold/segment-bold.eot new file mode 100755 index 000000000..327bc791f Binary files /dev/null and b/src/shared/fonts/segment-bold/segment-bold.eot differ diff --git a/src/shared/fonts/segment-bold/segment-bold.svg b/src/shared/fonts/segment-bold/segment-bold.svg new file mode 100755 index 000000000..b446ea227 --- /dev/null +++ b/src/shared/fonts/segment-bold/segment-bold.svg @@ -0,0 +1,4 @@ + + +This SVG WebFont was generated by YouWorkForThem. +©2020 Typekiln. \ No newline at end of file diff --git a/src/shared/fonts/segment-bold/segment-bold.ttf b/src/shared/fonts/segment-bold/segment-bold.ttf new file mode 100755 index 000000000..552259407 Binary files /dev/null and b/src/shared/fonts/segment-bold/segment-bold.ttf differ diff --git a/src/shared/fonts/segment-bold/segment-bold.woff b/src/shared/fonts/segment-bold/segment-bold.woff new file mode 100755 index 000000000..c70057006 Binary files /dev/null and b/src/shared/fonts/segment-bold/segment-bold.woff differ diff --git a/src/shared/fonts/segment-bold/segment-bold.woff2 b/src/shared/fonts/segment-bold/segment-bold.woff2 new file mode 100755 index 000000000..e4ab4dd8c Binary files /dev/null and b/src/shared/fonts/segment-bold/segment-bold.woff2 differ diff --git a/src/shared/styles/font-families.tsx b/src/shared/styles/font-families.tsx index ee260233a..b7abc4e54 100644 --- a/src/shared/styles/font-families.tsx +++ b/src/shared/styles/font-families.tsx @@ -1,4 +1,5 @@ export const segmentFontFamily = "Segment-Regular"; +export const segmentBoldFontFamily = "Segment-Bold"; export const quincyRegularFontFamily = "QuincyCF-Regular"; export const quincyTextFontFamily = "QuincyCF-Text"; diff --git a/src/shared/styles/global-styles.tsx b/src/shared/styles/global-styles.tsx index 3d94eed53..acbb8c652 100644 --- a/src/shared/styles/global-styles.tsx +++ b/src/shared/styles/global-styles.tsx @@ -40,5 +40,12 @@ css` font-weight: normal; font-style: normal; } + + @font-face { + font-family: "Segment-Bold"; + src: url("../fonts/segment-bold/segment-bold.woff2") format("woff2"); + font-weight: normal; + font-style: normal; + } } `;