Cannot import style files

This commit is contained in:
Roberto Segura - phproberto 2017-11-15 19:13:27 +01:00
parent 155c89ec76
commit ff09906f76
3 changed files with 4 additions and 2 deletions

View File

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