Merge pull request #3 from phproberto/postcss-import

Cannot import style files
This commit is contained in:
Taylor Bryant 2017-11-19 10:07:05 -06:00 committed by GitHub
commit c8659f8b5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* You can see the styles here:
* https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
*/
@tailwind preflight;
@import "tailwind/preflight";
/**
* Here you would add any of your custom component classes; stuff that you'd
@ -27,7 +27,7 @@
* This injects all of Tailwind's utility classes, generated based on your
* config file.
*/
@tailwind utilities;
@import "tailwind/utilities";
/**
* Here you would add any custom utilities you need that don't come out of the

View File

@ -0,0 +1 @@
@tailwind preflight;

View File

@ -0,0 +1 @@
@tailwind utilities;