Created
September 4, 2020 17:55
-
-
Save heytulsiprasad/e8bae1eba7b90ef66b8b1b1ae0861d96 to your computer and use it in GitHub Desktop.
Config tailwind to desktop first approach
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: [], | |
}; |
@izhan how can we make this config in tailwind 4 with the configuration in css file please
@izhan how can we make this config in tailwind 4 with the configuration in css file please
@import "tailwindcss";
@custom-variant 2xl (@media (max-width: 96rem));
@custom-variant xl (@media (max-width: 80rem));
@custom-variant lg (@media (max-width: 64rem));
@custom-variant md (@media (max-width: 48rem));
@custom-variant sm (@media (max-width: 40rem));
@izhan thks
Thanks
@izhan how can we make this config in tailwind 4 with the configuration in css file please
@import "tailwindcss"; @custom-variant 2xl (@media (max-width: 96rem)); @custom-variant xl (@media (max-width: 80rem)); @custom-variant lg (@media (max-width: 64rem)); @custom-variant md (@media (max-width: 48rem)); @custom-variant sm (@media (max-width: 40rem));
This is it
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wrote a guide for desktop-first Tailwind here: https://www.subframe.com/blog/how-to-make-tailwind-desktop-first
Also recommend naming your breakpoints like so, especially if you're working on a web app: