diff --git a/tailwind.config.js b/tailwind.config.js index 9868ea602..020fd0a75 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,16 +1,17 @@ module.exports = { - content: [ - "./pages/**/*.{js,ts,jsx,tsx}", - "./components/**/*.{js,ts,jsx,tsx}", - ], - theme: { - screens: { - mob: "375px", - laptop: "1024px", - laptopl: "1440px", - desktop: "1280px", + content: [ + "./pages/**/*.{js,ts,jsx,tsx}", + "./components/**/*.{js,ts,jsx,tsx}", + ], + theme: { + screens: { + mob: "375px", + tablet: "768px", + laptop: "1024px", + laptopl: "1440px", + desktop: "1280px", + }, + extend: {}, }, - extend: {}, - }, - plugins: [], + plugins: [], };