update tailwind.config.js

master
mahdi 2 years ago
parent abc5678d97
commit 63818ff167
  1. 17
      tailwind.config.js

@ -34,8 +34,23 @@ module.exports = {
error: "var(--theme-error)",
errorText: "var(--theme-errorText)",
},
},
screens: {
sm: "640px",
// => @media (min-width: 640px) { ... }
md: "768px",
// => @media (min-width: 768px) { ... }
lg: "1024px",
// => @media (min-width: 1024px) { ... }
xl: "1280px",
// => @media (min-width: 1280px) { ... }
"2xl": "1536px",
// => @media (min-width: 1536px) { ... }
},
},
plugins: [
require("@themesberg/flowbite/plugin"),
require("tw-elements/dist/plugin"),

Loading…
Cancel
Save