From 96d81a8132947a1a1b9a7cbcd8b52f1d9cfc6ccc Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Thu, 12 Oct 2023 00:58:31 -0400 Subject: [PATCH] added new screen sizes --- 17th Website/tailwind.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/17th Website/tailwind.config.js b/17th Website/tailwind.config.js index 3c42481..cc2a3e0 100644 --- a/17th Website/tailwind.config.js +++ b/17th Website/tailwind.config.js @@ -7,14 +7,27 @@ module.exports = { darkMode: true, theme: { colors: { + 'transparent' : 'transparent', 'white': '#EDF2F4', 'blue': '#01bde7', 'gray-dark': '#1C1C21', 'gray-light': '#272731' }, + screens: { + 'sm': '640px', + + 'md': '768px', + + 'lg': '1024px', + + 'xl': '1376px', + + '2xl': '1536px', + }, extend: {}, }, plugins: [], } +// XL: 1376px \ No newline at end of file