added font weight for headers

This commit is contained in:
Kim, Jimin 2022-01-22 12:01:39 +09:00
parent 2feeab9b2b
commit adb809ed88
2 changed files with 4 additions and 2 deletions

View file

@ -9,9 +9,9 @@
<meta property="og:image" content="%PUBLIC_URL%/img/icon.png" /> <meta property="og:image" content="%PUBLIC_URL%/img/icon.png" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<link rel="preconnect" href="https://fonts.gstatic.com" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link <link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&family=Source+Code+Pro&display=swap" href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Source+Code+Pro&display=swap"
rel="stylesheet" rel="stylesheet"
/> />

View file

@ -196,6 +196,7 @@ const headerCSS = css`
h5, h5,
h6 { h6 {
margin-top: -3rem; margin-top: -3rem;
font-weight: 700;
} }
` `
@ -263,6 +264,7 @@ const globalStyle = css`
})}; })};
font-size: ${theming.size.medium}; font-size: ${theming.size.medium};
font-family: ${theming.font.regular}; font-family: ${theming.font.regular};
font-weight: 400;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }