Created
March 20, 2018 12:33
-
-
Save ijy/cb1a14237de411cf1a4f22ed68cebb9d to your computer and use it in GitHub Desktop.
Tailwind, postcss-import, & cssnext media queries
This file contains 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
@import "tailwindcss/preflight"; | |
@import "utils/utils"; | |
@import "components/banner"; | |
@import "tailwindcss/utilities"; | |
@custom-media --phone (min-width: 544px); | |
@custom-media --tablet (min-width: 768px); | |
@custom-media --desktop (min-width: 992px); | |
@custom-media --desktop-lg (min-width: 1200px); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment