-
-
Save inmanturbo/4cad8efeb92317b51cf6a254d43fee4e to your computer and use it in GitHub Desktop.
Revisions
-
heytulsiprasad created this gist
Sep 4, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ 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: [], };