Skip to content

Commit 32e7699

Browse files
author
gitgitWi
committed
Feat: global 스타일 추가; max-width, color 등
1 parent 05e4bc7 commit 32e7699

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pages/posts/from-jekyll-to-nextjs-mdx/00.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { TitleTexts } from "../../../components/molecules";
22

33
## GitHub Pages, `Jekyll` 기반에서 `Next.js` + `MDX`
44

5-
<TitleTexts titleText="(00) 잘 쓰고 있던 걸 굳이 바꾸는 이유" />
5+
<TitleTexts titleText="00. 잘 쓰고 있던 걸 굳이 바꾸는 이유" />
66

77
<br />
88

styles/globals.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@
88

99
.center {
1010
width: 100%;
11-
display: grid;
12-
place-content: center;
11+
display: flex;
12+
justify-content: center;
1313
}
1414

1515
html,
1616
body {
1717
@extend .reset;
1818
@extend .center;
1919

20+
width: 100vw;
21+
max-width: 900px;
22+
background-color: $Black-Inkwell;
23+
color: rgb(250, 250, 250);
2024
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu,
2125
Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2226
}

0 commit comments

Comments
 (0)