-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Pretendard font 전역 설정 수정 (#21)
- Loading branch information
1 parent
78ccf1a
commit 10f9f48
Showing
2 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
@font-face { | ||
font-family: 'Pretendard'; | ||
src: url('../../public/fonts/Pretendard.ttf'); | ||
} | ||
@layer base { | ||
|
||
@font-face { | ||
font-family: 'Pretendard-Regular'; | ||
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff') format('woff'); | ||
} | ||
|
||
html, | ||
body { | ||
padding: 0; | ||
margin: 0; | ||
font-family: Pretendard; | ||
font-family: Pretendard-Regular; | ||
color: #363a45; | ||
} | ||
} | ||
|