From ee7d1aded8b50bb0c3cb6f9a298b1527de62d4bf Mon Sep 17 00:00:00 2001 From: Lucemans Date: Sat, 7 Oct 2023 09:10:35 +0000 Subject: [PATCH] Introduce Custom Widths --- app/[slug]/page.tsx | 2 +- components/POAPModal/POAPModal.tsx | 4 ++-- hooks/useIYKRef.ts | 2 +- tailwind.config.js | 7 ++++++- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/app/[slug]/page.tsx b/app/[slug]/page.tsx index 81d4a16..90ff809 100644 --- a/app/[slug]/page.tsx +++ b/app/[slug]/page.tsx @@ -31,7 +31,7 @@ export default async function ({ return (
-
+
-
+
+
{ const result: IYKRefResponse = await response.json(); - // return DEBUG_VALUE; + // return DEBUG_VALUE as IYKRefResponse; return result; }; diff --git a/tailwind.config.js b/tailwind.config.js index c14b080..f03c4cf 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -10,7 +10,12 @@ module.exports = { './src/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { - extend: {}, + extend: { + maxWidth: { + md2: '420px', + md3: '458px', + }, + }, }, plugins: [], };