From 3a11e1425987f6b49b9213735622a3962b7e3857 Mon Sep 17 00:00:00 2001 From: keitakn Date: Mon, 19 Aug 2024 00:55:49 +0900 Subject: [PATCH] =?UTF-8?q?:art:=20#303=20=E3=83=86=E3=82=AD=E3=82=B9?= =?UTF-8?q?=E3=83=88=E3=81=AE=E3=83=95=E3=82=A9=E3=83=B3=E3=83=88=E3=82=B5?= =?UTF-8?q?=E3=82=A4=E3=82=BA=E3=82=92Figma=E3=81=AE=E3=83=87=E3=82=B6?= =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=81=AB=E5=90=88=E3=82=8F=E3=81=9B=E3=81=A6?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/_components/IconButton.tsx | 4 +++- tailwind.config.ts | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/app/_components/IconButton.tsx b/src/app/_components/IconButton.tsx index d478c2e..738ff67 100644 --- a/src/app/_components/IconButton.tsx +++ b/src/app/_components/IconButton.tsx @@ -108,7 +108,9 @@ export const IconButton = ({ {showRepeatIcon != null && } {showRandomIcon != null && } {showCatIcon != null && } - {displayText} + + {displayText} + ); }; diff --git a/tailwind.config.ts b/tailwind.config.ts index f38909b..4a74f26 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -7,5 +7,12 @@ const config: Config = { './src/app/**/*.{js,ts,jsx,tsx,mdx}', ], plugins: [], + theme: { + extend: { + fontFamily: { + inter: ['Inter', 'sans-serif'], + }, + }, + }, }; export default config;