Skip to content

Commit

Permalink
[#1] 환경설정
Browse files Browse the repository at this point in the history
- customColor 이름오류 변경
- Layout의 flex-direction과 background 설정 변경
- 글꼴 추가
  • Loading branch information
JoGeumJu committed Jan 31, 2023
1 parent d6ebf57 commit c0651d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/customColor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export type customColorType = {
export const customColor: customColorType = {
white: "#FFFFFF",
black: "#000000",
gray: "#999999",
lightGray: "#BCBCBC",
darkGray: "#ECECEC",
darkGray: "#999999",
gray: "#BCBCBC",
lightGray: "#ECECEC",

blue: "#91D8F7",
blue_: "#BBEFFD48",
Expand Down
1 change: 1 addition & 0 deletions src/components/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const Wrapper = styled.div`

const WrapperInner = styled.div`
display: flex;
flex-direction: column;
width: 1024px;
min-height: 100%;
background: ${customColor.white};
Expand Down
9 changes: 9 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
@font-face {
font-family: "Pretendard-Regular";
src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff")
format("woff");
font-weight: 400;
font-style: normal;
}

* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: "Pretendard-Regular";
}

html::-webkit-scrollbar {
Expand Down

0 comments on commit c0651d5

Please sign in to comment.