Skip to content

Commit c446244

Browse files
committed
스타일 변경
1 parent c49b0b8 commit c446244

File tree

6 files changed

+27
-3
lines changed

6 files changed

+27
-3
lines changed

frontend/assets/styles/global.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@ ul, li {
1414
list-style: none;
1515
}
1616

17+
body,
18+
button,
19+
input,
20+
textarea {
21+
font-family: BlinkMacSystemFont, -apple-system, Arial, "Spoqa Han Sans", "Segoe UI", Roboto, "Helvetica Neue", Helvetica, sans-serif;
22+
}
23+
1724
body {
18-
font-family: "Noto Sans KR", sans-serif;
1925
line-height: 1.45;
2026
}

frontend/data/constants/resources.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const Resources = {
22
previousPyconkrImage: {
33
PYCONKR_2021_IMG: 'https://2022.pycon.kr/images/pyconkr2021.jpg',
4-
PYCONKR_2020_IMG: 'https://2022.pycon.kr/images/pyconkr2020.png',
4+
PYCONKR_2020_IMG: 'https://2022.pycon.kr/images/pyconkr2020.jpg',
55
PYCONKR_2019_IMG:
66
'https://live.staticflickr.com/65535/48715744618_1e10fe2748_z.jpg',
77
PYCONKR_2018_IMG:

frontend/pages/_document.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Document from 'next/document'
1+
import Document, { Html, Head, Main, NextScript } from 'next/document'
22
import { ServerStyleSheet } from 'styled-components'
33

44
export default class MyDocument extends Document {
@@ -27,4 +27,22 @@ export default class MyDocument extends Document {
2727
sheet.seal()
2828
}
2929
}
30+
31+
render() {
32+
return (
33+
<Html>
34+
<Head>
35+
<link
36+
href="//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css"
37+
rel="stylesheet"
38+
type="text/css"
39+
/>
40+
</Head>
41+
<body>
42+
<Main />
43+
<NextScript />
44+
</body>
45+
</Html>
46+
)
47+
}
3048
}
371 KB
Loading
-1.73 MB
Binary file not shown.
-23.1 KB
Loading

0 commit comments

Comments
 (0)