Added font for Chinese traditional.

This commit is contained in:
Mike Cao 2021-03-12 22:53:56 -08:00
parent fb711d58f1
commit a03e42e0d9
3 changed files with 9 additions and 2 deletions

View File

@ -16,12 +16,18 @@ export default function LanguageButton() {
return (
<>
<Head>
{(locale === 'zh-CN' || locale === 'zh-TW') && (
{locale === 'zh-CN' && (
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap"
rel="stylesheet"
/>
)}
{locale === 'zh-TW' && (
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap"
rel="stylesheet"
/>
)}
{locale === 'ja-JP' && (
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap"

View File

@ -36,6 +36,7 @@ export default function App({ Component, pageProps }) {
<link rel="icon" type="image/png" sizes="16x16" href={`${basePath}/favicon-16x16.png`} />
<link rel="manifest" href={`${basePath}/site.webmanifest`} />
<link rel="mask-icon" href={`${basePath}/safari-pinned-tab.svg`} color="#5bbad5" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

View File

@ -22,7 +22,7 @@ body {
}
.zh-TW {
font-family: 'Noto Sans SC', sans-serif !important;
font-family: 'Noto Sans TC', sans-serif !important;
}
.ja-JP {