diff --git a/bun.lock b/bun.lock index a94cccc..a024676 100644 --- a/bun.lock +++ b/bun.lock @@ -18,7 +18,6 @@ "markdown-it": "^14.1.0", "pagefind": "^1.4.0", "sanitize-html": "^2.17.0", - "sass": "^1.94.2", "sharp": "^0.34.4", }, "devDependencies": { @@ -27,6 +26,7 @@ "bun-types": "1.3.0", "eslint": "^9.39.1", "prettier": "^3.6.2", + "sass": "^1.94.2", }, "peerDependencies": { "typescript": "^5.9.3", diff --git a/package.json b/package.json index 395e811..eb10f1e 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,6 @@ "markdown-it": "^14.1.0", "pagefind": "^1.4.0", "sanitize-html": "^2.17.0", - "sass": "^1.94.2", "sharp": "^0.34.4" }, "devDependencies": { @@ -36,7 +35,8 @@ "@types/alpinejs__persist": "^3.13.4", "bun-types": "1.3.0", "eslint": "^9.39.1", - "prettier": "^3.6.2" + "prettier": "^3.6.2", + "sass": "^1.94.2" }, "module": "index.ts", "peerDependencies": { diff --git a/src/styles/fonts.scss b/src/styles/fonts.scss index db80f8b..332a937 100644 --- a/src/styles/fonts.scss +++ b/src/styles/fonts.scss @@ -1,14 +1,14 @@ @font-face { - font-family: Noto Sans; - src: url(./fonts/NotoSans-VariableFont_wdth,wght.ttf) format("truetype"); + font-family: "Noto Sans"; + src: url("./fonts/NotoSans-VariableFont_wdth,wght.ttf") format("truetype"); } @font-face { - font-family: Noto Serif; - src: url(./fonts/NotoSerif-VariableFont_wdth,wght.ttf) format("truetype"); + font-family: "Noto Serif"; + src: url("./fonts/NotoSerif-VariableFont_wdth,wght.ttf") format("truetype"); } @font-face { - font-family: JetBrainsMono; - src: url(./fonts/JetBrainsMono-VariableFont_wght.ttf) format("truetype"); + font-family: "JetBrainsMono"; + src: url("./fonts/JetBrainsMono-VariableFont_wght.ttf") format("truetype"); } diff --git a/src/styles/global.scss b/src/styles/global.scss index 6cf0b4e..18af9c3 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -53,7 +53,6 @@ a:hover { } main p { - /* text-align: justify; */ line-height: 1.5; }