Skip to content

Commit 7be682c

Browse files
committed
fix large mono font issue on blog page
Signed-off-by: Vu Van Dung <[email protected]>
1 parent 7f09ef3 commit 7be682c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"scripts": {
55
"check": "biome check .",
66
"check:ci": "biome ci .",
7-
"build": "bun download-assets && bun codegen && next build --turbopack",
7+
"build": "bun download-assets && bun codegen && next build",
88
"codegen": "graphql-codegen --config codegen.ts",
99
"db:push": "drizzle-kit push",
1010
"deploy-worker": "wrangler deploy misc/multi-tenancy-worker.ts --name multi-tenant-on-website --compatibility-date 2023-12-05",
11-
"dev": "concurrently \"bun codegen --watch\" \"next dev --turbopack\"",
11+
"dev": "concurrently \"bun codegen --watch\" \"next dev\"",
1212
"download-assets": "bun run scripts/download-assets.ts",
1313
"format": "biome format --write .",
1414
"lint": "biome lint .",

src/app/globals.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
--font-sans: var(--sans);
1212
--font-mono: var(--mono);
1313
--font-lta: var(--lta), var(--sans);
14+
15+
--default-font-family: var(--sans);
16+
--default-mono-font-family: var(--mono);
1417
}
1518

1619
@theme {

0 commit comments

Comments
 (0)