How do I define multiple media queries in one file?
I have this .styl-file:
@media (min-width: 980px)
body
padding-top 60px
@media (min-width: 768px)
body
.container
width 768px
This is giving me the error expected "indent", got "newline"
. Placing them in separate files and having one file include the other works. But when I have them in the same file and a second file that is importing this one it fails.
Update: The code of the files can be found here:
npm ls
. – Pother