-
-
Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e 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: [], | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment