Skip to content

Instantly share code, notes, and snippets.

@inmanturbo
Forked from heytulsiprasad/tailwind.js
Created January 25, 2025 16:24
Show Gist options
  • Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e to your computer and use it in GitHub Desktop.
Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e to your computer and use it in GitHub Desktop.
Config tailwind to desktop first approach
module.exports = {
theme: {
extend: {},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
md: { max: "767px" },
// => @media (max-width: 767px) { ... }
sm: { max: "639px" },
// => @media (max-width: 639px) { ... }
},
},
variants: {},
plugins: [],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment