Skip to content

Commit

Permalink
feat: added tablet breakpoint to tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryan3212 committed Jul 6, 2022
1 parent 461202e commit dd783db
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -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: [],
};

0 comments on commit dd783db

Please sign in to comment.