From d010238adc532a89b43c895fcd10ec3f161aa7b7 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 31 May 2023 14:12:15 -0700 Subject: [PATCH] refactor: tailwind config with custom sizes --- tailwind.config.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tailwind.config.ts b/tailwind.config.ts index fa232feb4..c5bbad97f 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -63,6 +63,7 @@ export default >{ '160px': '160px', '200px': '200px', '260px': '260px', + '300px': '300px', '310px': '310px', '350px': '350px', '448px': '448px', @@ -70,6 +71,24 @@ export default >{ '640px': '640px', '800px': '800px', }, + minWidth: { + '86px': '86px', + '160px': '160px', + '260px': '260px', + '300px': '300px', + '310px': '310px', + '350px': '350px', + '800px': '800px', + }, + maxWidth: { + '86px': '86px', + '160px': '160px', + '260px': '260px', + '300px': '300px', + '310px': '310px', + '350px': '350px', + '800px': '800px', + }, } } }