Skip to content

Commit

Permalink
fix: 폰트 경로 변경 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
junyeokk committed May 17, 2024
1 parent 4db00f4 commit 0316723
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/styles/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ export const GlobalStyle = createGlobalStyle`
@font-face {
font-family: "MesloLGS NF Bold";
src: url("/src/assets/MesloLGS-NF-Bold.ttf") format("truetype");
src: url("fonts/MesloLGS-NF-Bold.ttf") format("truetype");
}
@font-face {
font-family: "Blinker SemiBold";
src: url("/src/assets/Blinker-SemiBold.ttf") format("truetype");
src: url("fonts/Blinker-SemiBold.ttf") format("truetype");
}
@font-face {
font-family: "DM Sans";
src: url("/src/assets/DMSans-Medium.ttf") format("truetype");
src: url("fonts/DMSans-Medium.ttf") format("truetype");
}
body {
Expand Down

0 comments on commit 0316723

Please sign in to comment.