From 5a1bb563cca3cf263bba9f3eecec8c128e210932 Mon Sep 17 00:00:00 2001 From: komura-c <37304826+komura-c@users.noreply.github.com> Date: Tue, 14 Jan 2025 21:07:23 +0900 Subject: [PATCH 1/3] chore: add typography in tailwind config --- tailwind.config.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tailwind.config.ts b/tailwind.config.ts index 4cf3d2f..1185343 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -106,6 +106,22 @@ const config: Config = { outfit: ["var(--font-outfit)"], noto: ["var(--font-noto)"], }, + fontSize: { + "10": ["10px", { fontWeight: 400 }], + "12": ["12px", { fontWeight: 400 }], + "14": ["14px", { fontWeight: 400 }], + "14-bold": ["14px", { fontWeight: 700 }], + "16": ["16px", { fontWeight: 400 }], + "16-bold": ["16px", { fontWeight: 700 }], + "18": ["18px", { fontWeight: 400 }], + "18-bold": ["18px", { fontWeight: 700 }], + "20": ["20px", { fontWeight: 400 }], + "20-bold": ["20px", { fontWeight: 700 }], + "22-bold": ["22px", { fontWeight: 700 }], + "24-bold": ["24px", { fontWeight: 700 }], + "28-bold": ["28px", { fontWeight: 700 }], + "32-bold": ["32px", { fontWeight: 700 }], + }, }, }, plugins: [require("tailwindcss-animate")], From aa4fe39660d4962bf2f44371f5b5d8b247240b12 Mon Sep 17 00:00:00 2001 From: komura-c <37304826+komura-c@users.noreply.github.com> Date: Fri, 17 Jan 2025 09:47:10 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20fontSize=E3=81=AE=E3=81=BF=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E3=81=99?= =?UTF-8?q?=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.ts | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index 1185343..8a523d9 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -107,20 +107,16 @@ const config: Config = { noto: ["var(--font-noto)"], }, fontSize: { - "10": ["10px", { fontWeight: 400 }], - "12": ["12px", { fontWeight: 400 }], - "14": ["14px", { fontWeight: 400 }], - "14-bold": ["14px", { fontWeight: 700 }], - "16": ["16px", { fontWeight: 400 }], - "16-bold": ["16px", { fontWeight: 700 }], - "18": ["18px", { fontWeight: 400 }], - "18-bold": ["18px", { fontWeight: 700 }], - "20": ["20px", { fontWeight: 400 }], - "20-bold": ["20px", { fontWeight: 700 }], - "22-bold": ["22px", { fontWeight: 700 }], - "24-bold": ["24px", { fontWeight: 700 }], - "28-bold": ["28px", { fontWeight: 700 }], - "32-bold": ["32px", { fontWeight: 700 }], + "10": "10px", + "12": "12px", + "14": "14px", + "16": "16px", + "18": "18px", + "20": "20px", + "22": "22px", + "24": "24px", + "28": "28px", + "32": "32px", }, }, }, From 72ffcd8159f8dcc4ddffec717e14ffc5d59b5bbd Mon Sep 17 00:00:00 2001 From: komura-c <37304826+komura-c@users.noreply.github.com> Date: Fri, 17 Jan 2025 09:49:42 +0900 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20fontSize=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index 8a523d9..f2a85ad 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -107,16 +107,16 @@ const config: Config = { noto: ["var(--font-noto)"], }, fontSize: { - "10": "10px", - "12": "12px", - "14": "14px", - "16": "16px", - "18": "18px", - "20": "20px", - "22": "22px", - "24": "24px", - "28": "28px", - "32": "32px", + 10: "10px", + 12: "12px", + 14: "14px", + 16: "16px", + 18: "18px", + 20: "20px", + 22: "22px", + 24: "24px", + 28: "28px", + 32: "32px", }, }, },